Blame view

src/MapsDb/Models/FlowIntensity.cs 1.69 KB
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
  using System;
  using System.Collections.Generic;
  
  namespace MapsDb.Models
  {
      public partial class FlowIntensity
      {
da981eb5   Yarik   FlowIntensity
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
          public int? RoadId { get; set; }
          public int? RegionId { get; set; }
          public double? Location { get; set; }
          public double? Begin { get; set; }
          public double? End { get; set; }
          public int? RoadDirectionId { get; set; }
          public int? SettlementId { get; set; }
          public int? IntensityTotal { get; set; }
          public int? IntensityIncrease { get; set; }
          public int? IntensityMoto { get; set; }
          public int? IntensityMotoSidecar { get; set; }
          public int? IntensityCar { get; set; }
          public int? IntensityTruckTwo { get; set; }
          public int? IntensityTruckTwoSix { get; set; }
          public int? IntensityTruckSixEight { get; set; }
          public int? IntensityTruckEightFourteen { get; set; }
          public int? IntensityTruckFourteen { get; set; }
          public int? IntensityLorryTwelve { get; set; }
          public int? IntensityLorryTwelveTwenty { get; set; }
          public int? IntensityLorryTwentyThirty { get; set; }
          public int? IntensityLorryThirty { get; set; }
          public int? IntensityTractorUnderTen { get; set; }
          public int? IntensityTractorOverTen { get; set; }
          public int? IntensityBus { get; set; }
          public int? IntensityBusCoupled { get; set; }
          public int? DateAdd { get; set; }
  
          public virtual Region Region { get; set; }
          public virtual RoadDirection RoadDirection { get; set; }
          public virtual Road Road { get; set; }
          public virtual Settlement Settlement { get; set; }
      }
  }