Blame view

src/MapsDb/Models/ServiceObject.cs 1021 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class ServiceObject
      {
25539461   Administrator   add pagination to...
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
25
26
27
          public int? RoadId { get; set; }
          public int? RegionId { get; set; }
          public int? ServiceObjectTypeId { get; set; }
          public int? SettlementId { get; set; }
          public int? DepartmentAffiliationId { get; set; }
          public double? LocationRight { get; set; }
          public double? LocationLeft { get; set; }
          public double? LocationAxis { get; set; }
          public double? Distance { get; set; }
          public double? Capacity { get; set; }
          public string ArrangementElements { get; set; }
  
          public virtual DepartmentAffiliation DepartmentAffiliation { get; set; }
          public virtual Region Region { get; set; }
          public virtual Road Road { get; set; }
          public virtual ServiceObjectType ServiceObjectType { get; set; }
          public virtual Settlement Settlement { get; set; }
      }
  }