Blame view

src/MapsDb/Models/RoadWidth.cs 803 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class RoadWidth
      {
f59d6b52   Administrator   add road width
8
          public int Id { get; set; }
32912d0b   Administrator   first commit
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
          public int? RegionId { get; set; }
          public int? RoadId { get; set; }
          public double? Begin { get; set; }
          public double? End { get; set; }
          public double? WidthRoadsideLeft { get; set; }
          public double? WidthReverseRoad { get; set; }
          public double? WidthStrip { get; set; }
          public double? WidthRoadwayForward { get; set; }
          public double? WidthRoadsideRight { get; set; }
          public double? CountLaneLeft { get; set; }
          public double? CountLaneRight { get; set; }
  
          public virtual Region Region { get; set; }
          public virtual Road Road { get; set; }
      }
  }