TenantLoginOutput.cs 265 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 using NCC.Dependency; namespace NCC.Tenant.Entitys.Dto { [SuppressSniffer] public class TenantLoginOutput { public string account { get; set; } public string realName { get; set; } public string token { get; set; } } }