namespace DB_Proxima; public class DataCollection : GeneralDB { public Dictionary ValueCollection { get; } = []; } 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; } }