236ec4d5
Administrator
add DsF
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace MapsModels.DsModels
{
public class BusStopEditDsF
{
public int? busStopId { get; set; }
public int? roadId { get; set; }
public int? regionId { get; set; }
public int? settlementId { get; set; }
public double? locationLeft { get; set; }
public double? locationRight { get; set; }
public int? surfaceTypeId { get; set; }
public int? areaStopAvailability { get; set; }
public int? areaLandAvailability { get; set; }
public int? pocketAvailability { get; set; }
public int? toiletAvailability { get; set; }
public int? yearBuild { get; set; }
public int? yearRepair { get; set; }
public int? stateCommonId { get; set; }
}
}
|