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

11 lines
272 B
C#

namespace Wpf.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; }
}
}