namespace Complex.EndPoint.ViewModel
{
public class ComplexViewModel
{
public int? Id { set; get; }
public string? Title { set; get; }
public string? Address { set; get; }
///
/// وضعیت
///
public int? StateId { set; get; }
///
/// متراژ کل
///
public int? AreaMeter { set; get; }
///
/// متراژ حیاط
///
public int? YardMeter { set; get; }
///
/// تعداد آسانسور
///
public int? ElevatorCount { set; get; }
/// تعداد انباری
public int? WarehouseCount { set; get; }
public int? YearMake { set; get; }
public int? ParentId { set; get; }
public string? Description { set; get; }
public int? CityId { set; get; }
public int? CityTitle { set; get; }
}
}