using System.Collections.Generic; using Assets.Common; namespace Assets.Cities { public enum CityFieldTypes { MainSquare, Business, Living } public class CityField { public IList Boundary { get; set; } = new List(); public CityFieldTypes cityFieldType { get; set; } public Point Center { get; set; } } }