18 lines
601 B
C#
18 lines
601 B
C#
namespace Fengling.Console.Models.Dtos;
|
|
|
|
public class TenantDto
|
|
{
|
|
public long Id { get; set; }
|
|
public string TenantId { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string ContactName { get; set; } = "";
|
|
public string ContactEmail { get; set; } = "";
|
|
public string? ContactPhone { get; set; }
|
|
public int? MaxUsers { get; set; }
|
|
public int UserCount { get; set; }
|
|
public string Status { get; set; } = "active";
|
|
public DateTime? ExpiresAt { get; set; }
|
|
public string? Description { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|