Blame view

netcore/src/Modularity/Tenant/NCC.Tenant.Entitys/Dto/TenantDeleteQuery.cs 284 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
  using NCC.Dependency;
  
  namespace NCC.Tenant.Entitys.Dtos
  {
      [SuppressSniffer]
      public class TenantDeleteQuery
      {
          /// <summary>
          /// (0-不删除,1-删除)是否删除租户数据库
          /// </summary>
          public int? isClear { get; set; }
      }
  }