Data.cs 359 B

123456789101112131415161718
  1. namespace DB_Proxima;
  2. public class DataCollection<T> : GeneralDB
  3. {
  4. public Dictionary<string, T>? ValueCollection { get; set; }
  5. }
  6. public class PairValue<T> where T : unmanaged
  7. {
  8. public T? SetPoint { get; set; }
  9. public T? Value { get; set; }
  10. }
  11. public class GeneralDB
  12. {
  13. public Guid UID { get; set; }
  14. public DateTime Time { get; set; }
  15. }