mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 18:20:51 +08:00
14 lines
300 B
C#
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; }
|
|
}
|
|
}
|