using System; using System.Collections.Generic; namespace Maps.Entities { public partial class StateCommon { public StateCommon() { BusStop = new HashSet(); CrossSection = new HashSet(); RoadSurface = new HashSet(); } public int StateCommonId { get; set; } public string Value { get; set; } public virtual ICollection BusStop { get; set; } public virtual ICollection CrossSection { get; set; } public virtual ICollection RoadSurface { get; set; } } }