namespace Complex.EndPoint.ViewModel
{
public class UnitViewModel
{
public Guid? Id { set; get; }
public Guid ComplexId { set; get; }
public string UnitName { set; get; }
///
/// مالک
///
public string? OwnerId { set; get; }
///
/// ساکن
///
///
/// شماره مالک
///
public string? TenantId { set; get; }
///
/// مستاجر
///
public bool? IsActive { set; get; }
///
/// متراژ کل
///
public int? AreaMeter { set; get; }
///
/// بدهی از قبل
///
public int? RemainingAmount { set; get; }
public string? LastPaymentDate { set; get; }
public string? EmergencyTels { set; get; }
public int? ParkingAreaMeter { set; get; }
///
/// متراژ حیاط
///
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; }
}
}