using System; using System.Collections.Generic; namespace MapsDb.Models { public partial class SurfaceType { public SurfaceType() { BusStop = new HashSet(); CrossSection = new HashSet(); RoadSurface = new HashSet(); } public int SurfaceTypeId { get; set; } public string Name { get; set; } public virtual ICollection BusStop { get; set; } public virtual ICollection CrossSection { get; set; } public virtual ICollection RoadSurface { get; set; } } }