nsnail faaf5aa0fc
feat: 登录日志独立存储 (#161)
请求日志自动分表
[skip ci]

Co-authored-by: tk <fiyne1a@dingtalk.com>
2024-07-26 17:46:56 +08:00

12 lines
270 B
C#

namespace NetAdmin.Domain.Dto.Sys.Cache;
/// <summary>
/// 请求:获取所有缓存项
/// </summary>
public sealed record GetAllEntriesReq : DataAbstraction
{
/// <summary>
/// 关键词
/// </summary>
public string Keywords { get; init; }
}