10 lines
228 B
C#
10 lines
228 B
C#
namespace TakeoutSaaS.Infrastructure.Identity.Options;
|
|
|
|
/// <summary>
|
|
/// 刷新令牌存储配置。
|
|
/// </summary>
|
|
public sealed class RefreshTokenStoreOptions
|
|
{
|
|
public string Prefix { get; set; } = "identity:refresh:";
|
|
}
|