Blame view

src/MapsDb/Models/RoadCategory.cs 412 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class RoadCategory
      {
9035cd53   Administrator   add RoadToCategor...
8
9
10
11
12
          public RoadCategory()
          {
              RoadToCategory = new HashSet<RoadToCategory>();
          }
  
32912d0b   Administrator   first commit
13
14
          public int RoadCategoryId { get; set; }
          public string Value { get; set; }
9035cd53   Administrator   add RoadToCategor...
15
16
  
          public virtual ICollection<RoadToCategory> RoadToCategory { get; set; }
32912d0b   Administrator   first commit
17
18
      }
  }