mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 10:10:49 +08:00
11 lines
272 B
C#
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; }
|
|
}
|
|
}
|