mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-06 04:52:50 +08:00
12 lines
270 B
C#
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; }
|
|
} |