20 lines
522 B
C#
20 lines
522 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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 DateTime OnBoardingDate { get; set; }
|
|
}
|
|
}
|