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; } } }