Files
GPW/GPW_Data/Objects.cs
T
2020-09-03 14:06:39 +02:00

15 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GPW_data
{
public class chartJsTimeSerie
{
public DateTime x { get; set; }
public decimal y { get; set; }
}
}