Blame view

src/MapsModels/DsModels/BusStopDetailsDs.cs 756 Bytes
32912d0b   Administrator   first commit
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 BusStopDetailsDs
      {
          public int BusStopId { get; set; }
          public string Road { get; set; }
          public string Region { get; set; }
          public string Settlement { get; set; }
          public double? LocationLeft { get; set; }
          public double? LocationRight { get; set; }
          public string SurfaceType { 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 string StateCommon { get; set; }
  
      }
  }