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 } }