Blame view

netcore/src/Modularity/Tenant/NCC.Tenant.Entitys/Dto/TenantInfoOutput.cs 420 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  using NCC.Dependency;
  using System;
  
  namespace NCC.Tenant.Entitys.Dtos
  {
      [SuppressSniffer]
      public class TenantInfoOutput
      {
          public string id { get; set; }
          public string companyName { get; set; }
          public string enCode { get; set; }
          public string fullName { get; set; }
          public string description { get; set; }
          public DateTime? expiresTime { get; set; }
      }
  }