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