namespace Application.Dto;
///
/// 获取配置请求
///
public record GetConfigRequest
{
///
/// 配置键
///
public string Key { get; init; } = string.Empty;
}
///
/// 设置配置请求
///
public record SetConfigRequest
{
///
/// 配置键
///
public string Key { get; init; } = string.Empty;
///
/// 配置值
///
public string Value { get; init; } = string.Empty;
}