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