22 lines
589 B
C#
22 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|