using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Test; public class DataCollection { public Guid UID { get; set; } public DateTime Time { get; set; } public Dictionary ValueCollection { get; set; } } public class PairValue { public T SetPoint { get; set; } public T Value { get; set; } }