Blame view

src/MapsDb/Models/RoadToCategory.cs 590 Bytes
9035cd53   Administrator   add RoadToCategor...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class RoadToCategory
      {
          public int Id { get; set; }
          public int? RegionId { get; set; }
          public int? RoadId { get; set; }
          public double? Begin { get; set; }
          public double? End { get; set; }
          public double? Distance { get; set; }
          public int? RoadCategoryId { get; set; }
  
          public virtual Region Region { get; set; }
          public virtual RoadCategory RoadCategory { get; set; }
          public virtual Road Road { get; set; }
      }
  }