using System; using System.Collections.Generic; namespace Maps.Entities { public partial class RoadDirection { public RoadDirection() { FlowIntensity = new HashSet(); RoadService = new HashSet(); RoadSurface = new HashSet(); } public int RoadDirectionId { get; set; } public string DirectionName { get; set; } public virtual ICollection FlowIntensity { get; set; } public virtual ICollection RoadService { get; set; } public virtual ICollection RoadSurface { get; set; } } }