Blame view

src/MapsDb/Models/Relation.cs 610 Bytes
a036a6c0   Yarik   Console
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class Relation
      {
          public Relation()
          {
              RelationToRoad = new HashSet<RelationToRoad>();
              WayToRelation = new HashSet<WayToRelation>();
          }
  
          public int Id { get; set; }
          public bool Status { get; set; }
          public string RemoteId { get; set; }
          public int DateAdd { get; set; }
  
          public virtual ICollection<RelationToRoad> RelationToRoad { get; set; }
          public virtual ICollection<WayToRelation> WayToRelation { get; set; }
      }
  }