using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.DataProvider { /// /// /// public class JsonData { /// /// /// public JsonData() { } /// /// /// public JsonData(DateTime time, List records) { this.DebugTime = time; this.DebugRecords = records; } /// /// /// public DateTime DebugTime { get; set; } /// /// /// public List DebugRecords { get; set; } } }