using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HTOLHAST { public class Measurement { // Timestamp, Position, Device, Measurement, Value, Unit // 2025-01-09, 1, HAMEG1, CH1, 1.0, 0.1 // 2025-01-09, 1, HAMEG2, CH5, 1.0, 0.1 // 2025-01-09, 1, KEITHLEY, CH1, -, 1.0 // 2025-01-09, 1, AGILENT, HEADER1, 1.0, - public DateTime Timestamp { get; set; } public int Position { get; set; } public string Device { get; set; } public string Description { get; set; } public double Value { get; set; } public string Unit { get; set; } public Measurement() { } } }