Blame view

src/MapsModels/DsModels/ContractorEditDsM.cs 681 Bytes
c386d9eb   Yarik   Big commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  namespace MapsModels.DsModels
  {
      public class ContractorEditDsM
      {
          public int? Id { get; set; }
          public int RoadId { get; set; }
          public int? CrossSectionId { get; set; }
          public string ContractorName { get; set; }
          public string Info { get; set; }
          public int? RoadSectionNumber { get; set; }
          public int? ContractorSectionNumber { get; set; }
          public decimal? Begin { get; set; }
          public decimal? End { get; set; }
          public decimal Length { get; set; }
          public string RightCoords { get; set; }
          public string BeginScheme { get; set; }
          public string EndScheme { get; set; }
  
      }
  }