YD_Event.Admin/YD_Event.Application/Config/Dtos/CustomConfigQueryInput.cs
2025-12-17 11:12:13 +08:00

13 lines
296 B
C#

namespace YD_Event.Application.Config.Dtos;
public class CustomConfigQueryInput : Pagination
{
/// <summary>
/// 配置名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 配置唯一编码
/// </summary>
public string Code { get; set; }
}