Files
aistudio-wpf-diagram/Live-Charts-master/Examples/WinForms/Cartesian/Linq/City.cs
2021-07-23 09:42:22 +08:00

14 lines
300 B
C#

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; }
}
}