first commit
This commit is contained in:
46
Complex.EndPoint/ViewModel/UnitViewModel.cs
Normal file
46
Complex.EndPoint/ViewModel/UnitViewModel.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user