RoadDirection.cs 675 Bytes
using System;
using System.Collections.Generic;

namespace Maps.Entities
{
    public partial class RoadDirection
    {
        public RoadDirection()
        {
            FlowIntensity = new HashSet<FlowIntensity>();
            RoadService = new HashSet<RoadService>();
            RoadSurface = new HashSet<RoadSurface>();
        }

        public int RoadDirectionId { get; set; }
        public string DirectionName { get; set; }

        public virtual ICollection<FlowIntensity> FlowIntensity { get; set; }
        public virtual ICollection<RoadService> RoadService { get; set; }
        public virtual ICollection<RoadSurface> RoadSurface { get; set; }
    }
}