Files
NKC/AppData/Objects.cs
T
2021-10-06 12:11:25 +02:00

39 lines
767 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AppData
{
public class chartJsTSerie
{
#region Public Properties
public string label { get; set; } = "";
public DateTime x { get; set; }
public decimal y { get; set; }
#endregion Public Properties
}
public class chartJsTVal
{
#region Public Properties
public string x { get; set; }
public decimal y { get; set; }
#endregion Public Properties
}
public class chartJsXY
{
#region Public Properties
public decimal x { get; set; }
public decimal y { get; set; }
#endregion Public Properties
}
}