Files
mapo-core/MP.Stats/Data/ChartKV.cs
T
2021-05-22 12:42:30 +02:00

17 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MP.Stats.Data
{
public class ChartKV
{
#region Public Properties
public string label { get; set; } = "";
public double value { get; set; } = 0;
#endregion Public Properties
}
}