Blame view

src/MapsModels/DsModels/BusStopDetailsDsM.cs 757 Bytes
32912d0b   Administrator   first commit
1
2
  namespace MapsModels.DsModels
  {
b9b3b8dd   Administrator   add deteils and c...
3
      public class BusStopDetailsDsM
32912d0b   Administrator   first commit
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
      {
          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; }
  
      }
  }