7 lines
204 B
C#
7 lines
204 B
C#
namespace CM.Authentication;
|
|
|
|
public class JwtTokenCacheOptions
|
|
{
|
|
public uint ExpirationOffset { get; set; } = 15;
|
|
public string CacheKey { get; set; } = "CakemailJwtTokenManager.JwtTokenResult";
|
|
} |