Files
gwms/GWMS.Data/TSData.cs
T
2021-06-01 18:57:48 +02:00

19 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GWMS.Data
{
public class TSData
{
#region Public Properties
public DateTime DtEvent { get; set; } = DateTime.Now;
public double ValDouble { get; set; } = 0;
#endregion Public Properties
}
}