using Yi.Framework.Ddd;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Config
{
///
/// 配置查询参数
///
public class ConfigGetListInputVo : PagedAllResultRequestDto
{
///
/// 配置名称
///
public string? ConfigName { get; set; }
///
/// 配置键
///
public string? ConfigKey { get; set; }
}
}