20 lines
389 B
C#
20 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GraphicData.Class
|
|
{
|
|
public class cGraphicData
|
|
{
|
|
|
|
public DateTime DataTime { get; set; }
|
|
public double DataValue { get; set; }
|
|
public int DataDuration { get; set; }
|
|
|
|
public cGraphicData() { }
|
|
|
|
}
|
|
}
|