namespace DB_Proxima; public class DataCollection : GeneralDB { public Dictionary? ValueCollection { get; set; } } public class PairValue where T : unmanaged { public T? SetPoint { get; set; } public T? Value { get; set; } } public class GeneralDB { public Guid UID { get; set; } public DateTime Time { get; set; } }