12 lines
237 B
C#
12 lines
237 B
C#
namespace MP.MONO.UI.Data
|
|
{
|
|
public class ChartKV
|
|
{
|
|
#region Public Properties
|
|
|
|
public string label { get; set; } = "";
|
|
public double value { get; set; } = 0;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |