This commit is contained in:
xyy
2026-02-27 16:03:49 +08:00
parent ff5d1b7d1d
commit 82abc41dbc
26 changed files with 1170 additions and 50 deletions

9
Models/DataPoint.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace MembranePoreTester.Models
{
public class DataPoint
{
public double Pressure { get; set; } // 压力
public double WetFlow { get; set; } // 湿膜流量(L/min)
public double DryFlow { get; set; } // 干膜流量(L/min)
}
}