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