Skip to content

Commit

Permalink
Modify the accessibility of ExtendedCacheValue.
Browse files Browse the repository at this point in the history
  • Loading branch information
TonWin618 committed Apr 13, 2024
1 parent 9fc9739 commit be4965b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ExtendedCacheValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
{
internal struct ExtendedCacheValue
{
internal DateTime? ExpirationTime { get; set; } = default;
internal int SlidingTtl { get; set; } = default;
internal string ValueBase64 { get; set; } = "";
public DateTime? ExpirationTime { get; set; } = default;
public int SlidingTtl { get; set; } = default;
public string ValueBase64 { get; set; } = "";

public ExtendedCacheValue()
public ExtendedCacheValue()
{

}

internal ExtendedCacheValue(DateTime? expirationTime, int slidingTtl, string valueBase64)
public ExtendedCacheValue(DateTime? expirationTime, int slidingTtl, string valueBase64)
{
ExpirationTime = expirationTime;
SlidingTtl = slidingTtl;
Expand Down

0 comments on commit be4965b

Please sign in to comment.