19 lines
671 B
C#
19 lines
671 B
C#
using Marco.Pms.Model.Master;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Tenant
|
|
{
|
|
public class TenantListVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string? DomainName { get; set; }
|
|
public string ContactName { get; set; } = string.Empty;
|
|
public string ContactNumber { get; set; } = string.Empty;
|
|
public string? logoImage { get; set; } // Base64
|
|
public string? OragnizationSize { get; set; }
|
|
public Industry? Industry { get; set; }
|
|
public TenantStatus? TenantStatus { get; set; }
|
|
}
|
|
}
|