Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Config/ConfigGetListInputVo.cs 512 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  using Yi.Framework.Ddd;
  using Yi.Framework.Ddd.Application.Contracts;
  
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Config
  {
      /// <summary>
      /// 配置查询参数
      /// </summary>
      public class ConfigGetListInputVo : PagedAllResultRequestDto
      {
          /// <summary>
          /// 配置名称
          /// </summary>
          public string? ConfigName { get; set; }
  
          /// <summary>
          /// 配置键
          /// </summary>
          public string? ConfigKey { get; set; }
  
      }
  }