using System; namespace Winforms.Cartesian.Linq { public class City { public Guid Id { get; set; } public string Name { get; set; } public double Population { get; set; } public double Area { get; set; } public string Country { get; set; } } }