// FrictionDataPoint.cs using System; namespace PLCDataMonitor { public class FrictionDataPoint { public DateTime Timestamp { get; set; } public double Friction1 { get; set; } public double Friction2 { get; set; } public bool IsPaused { get; set; } } }