using StackExchange.Redis;
namespace NetAdmin.Domain.Dto.Sys.Cache;
///
/// 响应:获取所有缓存项
///
public sealed record GetEntryRsp : DataAbstraction
{
///
/// Initializes a new instance of the class.
///
public GetEntryRsp() { }
///
/// 缓存值
///
public string Data { get; set; }
///
/// 过期时间
///
public DateTime? ExpireTime { get; init; }
///
/// 缓存键
///
public string Key { get; init; }
///
/// 数据类型
///
public RedisType Type { get; init; }
}