17 lines
508 B
C#
17 lines
508 B
C#
namespace Marco.Pms.Model.Entitlements
|
|
{
|
|
public class Tenant
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string DomainName { get; set; }
|
|
public string ContactName { get; set; }
|
|
public string ContactNumber { get; set; }
|
|
|
|
//public string? OragnizationSize { get; set; }
|
|
//public int IndustryId { get; set; }
|
|
public DateTime OnBoardingDate { get; set; }
|
|
}
|
|
}
|