16 lines
472 B
C#
16 lines
472 B
C#
namespace Marco.Pms.Model.ViewModels.Tenant
|
|
{
|
|
public class TenantVM
|
|
{
|
|
public string OrganizationName { get; set; }
|
|
public string About { get; set; }
|
|
public string Website { get; set; }
|
|
public string Name { get; set; }
|
|
public string ContactNumber { get; set; }
|
|
|
|
//public string? OragnizationSize { get; set; }
|
|
//public int IndustryId { get; set; }
|
|
public DateTime OnBoardingDate { get; set; }
|
|
}
|
|
}
|