c386d9eb
Yarik
Big commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace MapsModels.ViewModels
{
public class RoadVm
{
public int Id { get; set; }
public string Name { get; set; }
public string Value { get; set; }
public double? Length { get; set; }
public string HistoricalBackground { get; set; }
public string EconomicValue { get; set; }
public string LawDoc { get; set; }
public string AcceptTransferDoc { get; set; }
public string AcceptanceDoc { get; set; }
public string AuthorityAct { get; set; }
public string RoadType { get; set; }
public int Index { get; set; }
}
}
|