暂时提交,等客户那边测试

This commit is contained in:
xyy
2026-03-11 19:11:06 +08:00
parent 84fae8c87c
commit fb82101706
5 changed files with 351 additions and 358 deletions

13
FrictionDataPoint.cs Normal file
View File

@@ -0,0 +1,13 @@
// 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; }
}
}