Blame view

src/MapsDb/Models/Settlement.cs 858 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class Settlement
      {
          public Settlement()
          {
              BusStop = new HashSet<BusStop>();
              FlowIntensity = new HashSet<FlowIntensity>();
              ServiceObject = new HashSet<ServiceObject>();
              SettlementAddressLink = new HashSet<SettlementAddressLink>();
          }
  
          public int SettlementId { get; set; }
          public string Name { get; set; }
          public string Sign { get; set; }
  
          public virtual ICollection<BusStop> BusStop { get; set; }
          public virtual ICollection<FlowIntensity> FlowIntensity { get; set; }
          public virtual ICollection<ServiceObject> ServiceObject { get; set; }
          public virtual ICollection<SettlementAddressLink> SettlementAddressLink { get; set; }
      }
  }