123456789101112131415161718 |
- namespace DB_Proxima;
- public class DataCollection<T> : GeneralDB
- {
- public Dictionary<string, T>? ValueCollection { get; set; }
- }
- public class PairValue<T> 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; }
- }
|