13 lines
298 B
C#
13 lines
298 B
C#
|
|
namespace Easy.Admin.Application.Config.Dtos;
|
|||
|
|
|
|||
|
|
public class CustomConfigQueryInput : Pagination
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 配置名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 配置唯一编码
|
|||
|
|
/// </summary>
|
|||
|
|
public string Code { get; set; }
|
|||
|
|
}
|