24 lines
426 B
C#
24 lines
426 B
C#
using System;
|
|
|
|
namespace GPW_data
|
|
{
|
|
public class chartJsTSerie
|
|
{
|
|
#region Public Properties
|
|
|
|
public DateTime 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
|
|
}
|
|
} |