17 lines
333 B
C#
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
|
|
}
|
|
} |