Files
FootwearTest-20260602/Footwear Test methodsfor wholeshoe Slipresistanceperformance/Models/SlipReportExport.cs
2026-06-02 18:14:01 +08:00

22 lines
603 B
C#

using System.Collections.Generic;
namespace Footwear_Test_methodsfor_wholeshoe_Slipresistanceperformance.Models
{
public sealed record SlipReportExport(
string TestNumber,
string OperatorName,
string MethodName,
string ReportName,
string SampleFeature,
string ShoeSize,
string Lubricant,
string TestMode,
string Surface,
string TargetLoad,
string ActualLoad,
string TestSpeed,
string StandardReference,
IReadOnlyList<TestSample> Results,
IReadOnlyList<SlipDataPoint> Points);
}