using System.Collections.Generic; using Assets.Common; namespace Assets.Cities { public class CityField { public IList Boundary { get; set; } = new List(); } }