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 } }