Files
aistudio-wpf-diagram/Live-Charts-master/Examples/UWP/CartesianChart/CustomTooltipAndLegend/CustomerVm.cs
2021-07-23 09:42:22 +08:00

11 lines
272 B
C#

namespace UWP.CartesianChart.CustomTooltipAndLegend
{
public class CustomerVm
{
public string Name { get; set; }
public string LastName { get; set; }
public int Phone { get; set; }
public int PurchasedItems { get; set; }
}
}