17 lines
346 B
C#
17 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Stats.Data
|
|
{
|
|
public class ChartTS
|
|
{
|
|
#region Public Properties
|
|
|
|
public DateTime TLabel { get; set; } = DateTime.Now;
|
|
public double Value { get; set; } = 0;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |