namespace YY.Admin.Services.Service { /// /// 租户列表输出 /// public class TenantOutput { public long Id { get; set; } public string? Title { get; set; } public string? Logo { get; set; } public StatusEnum Status { get; set; } public DateTime CreateTime { get; set; } public DateTime? UpdateTime { get; set; } } }