using System; using System.Collections.Generic; namespace Maps.Entities { public partial class SettlementLocation { public SettlementLocation() { SettlementAddressLink = new HashSet(); } public int SettlementLocationId { get; set; } public string Value { get; set; } public virtual ICollection SettlementAddressLink { get; set; } } }