13 lines
313 B
C#
13 lines
313 B
C#
namespace TakeoutSaaS.Infrastructure.Dictionary.Options;
|
|
|
|
/// <summary>
|
|
/// 字典缓存配置。
|
|
/// </summary>
|
|
public sealed class DictionaryCacheOptions
|
|
{
|
|
/// <summary>
|
|
/// 缓存滑动过期时间。
|
|
/// </summary>
|
|
public TimeSpan SlidingExpiration { get; set; } = TimeSpan.FromMinutes(30);
|
|
}
|