mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-12-23 14:35:50 +08:00
13
src/backend/NetAdmin.Domain/Dto/Sys/Cache/DelEntryReq.cs
Normal file
13
src/backend/NetAdmin.Domain/Dto/Sys/Cache/DelEntryReq.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace NetAdmin.Domain.Dto.Sys.Cache;
|
||||
|
||||
/// <summary>
|
||||
/// 请求:删除缓存项
|
||||
/// </summary>
|
||||
public sealed record DelEntryReq : DataAbstraction
|
||||
{
|
||||
/// <summary>
|
||||
/// 缓存键
|
||||
/// </summary>
|
||||
[Required(ErrorMessageResourceType = typeof(Ln), ErrorMessageResourceName = nameof(Ln.缓存键不能为空))]
|
||||
public string Key { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user