13 lines
300 B
C#
13 lines
300 B
C#
|
|
// 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; }
|
|||
|
|
}
|
|||
|
|
}
|