DBGeneral.cs 408 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Test;
  7. public class DataCollection<T>
  8. {
  9. public Guid UID { get; set; }
  10. public DateTime Time { get; set; }
  11. public Dictionary<string, T> ValueCollection { get; set; }
  12. }
  13. public class PairValue<T>
  14. {
  15. public T SetPoint { get; set; }
  16. public T Value { get; set; }
  17. }