47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
namespace Complex.EndPoint.ViewModel
|
|
{
|
|
public class UnitViewModel
|
|
{
|
|
public Guid? Id { set; get; }
|
|
public Guid ComplexId { set; get; }
|
|
public string UnitName { set; get; }
|
|
|
|
/// <summary>
|
|
/// مالک
|
|
/// </summary>
|
|
public string? OwnerId { set; get; }
|
|
/// <summary>
|
|
/// ساکن
|
|
/// </summary>
|
|
/// <summary>
|
|
/// شماره مالک
|
|
/// </summary>
|
|
public string? TenantId { set; get; }
|
|
/// <summary>
|
|
/// مستاجر
|
|
/// </summary>
|
|
public bool? IsActive { set; get; }
|
|
/// <summary>
|
|
/// متراژ کل
|
|
/// </summary>
|
|
public int? AreaMeter { set; get; }
|
|
/// <summary>
|
|
/// بدهی از قبل
|
|
/// </summary>
|
|
public int? RemainingAmount { set; get; }
|
|
public string? LastPaymentDate { set; get; }
|
|
public string? EmergencyTels { set; get; }
|
|
public int? ParkingAreaMeter { set; get; }
|
|
/// <summary>
|
|
/// متراژ حیاط
|
|
/// </summary>
|
|
public int? YardMeter { set; get; }
|
|
public string? PublicState { set; get; }
|
|
public int? StateId { set; get; }
|
|
public int? Floor { set; get; }
|
|
//public string? UnitId { set; get; }
|
|
public string? ManagerDescription { set; get; }
|
|
}
|
|
|
|
}
|