Files
Complex/Complex.EndPoint/ViewModel/ComplexViewModel.cs
2026-06-02 20:48:16 +03:30

33 lines
1019 B
C#

namespace Complex.EndPoint.ViewModel
{
public class ComplexViewModel
{
public int? Id { set; get; }
public string? Title { set; get; }
public string? Address { set; get; }
/// <summary>
/// وضعیت
/// </summary>
public int? StateId { set; get; }
/// <summary>
/// متراژ کل
/// </summary>
public int? AreaMeter { set; get; }
/// <summary>
/// متراژ حیاط
/// </summary>
public int? YardMeter { set; get; }
/// <summary>
/// تعداد آسانسور
/// </summary>
public int? ElevatorCount { set; get; }
/// <summary> تعداد انباری</summary>
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; }
}
}