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; }
}
}
|