405bb8be
Yarik
Road
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace MapsModels.DsModels
{
public class RoadEditDsM
{
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 int? RoadTypeId { get; set; }
public int Index { get; set; }
}
}
|