36 lines
694 B
C#
36 lines
694 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.MONO.Data
|
|
{
|
|
public class chartJsData
|
|
{
|
|
#region Public Classes
|
|
|
|
public class chartJsTSerie
|
|
{
|
|
#region Public Properties
|
|
|
|
public DateTime x { get; set; }
|
|
public double y { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
|
|
public class chartJsXY
|
|
{
|
|
#region Public Properties
|
|
|
|
public double x { get; set; }
|
|
public double y { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
|
|
#endregion Public Classes
|
|
}
|
|
}
|