Files
EmailBill/Application/Dto/ConfigDto.cs

29 lines
530 B
C#
Raw Normal View History

2026-02-10 17:49:19 +08:00
namespace Application.Dto;
/// <summary>
/// 获取配置请求
/// </summary>
public record GetConfigRequest
{
/// <summary>
/// 配置键
/// </summary>
public string Key { get; init; } = string.Empty;
}
/// <summary>
/// 设置配置请求
/// </summary>
public record SetConfigRequest
{
/// <summary>
/// 配置键
/// </summary>
public string Key { get; init; } = string.Empty;
/// <summary>
/// 配置值
/// </summary>
public string Value { get; init; } = string.Empty;
}