21 lines
419 B
C#
21 lines
419 B
C#
namespace YY.Admin.Services.Service
|
|
{
|
|
/// <summary>
|
|
/// 租户列表输出
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|