22 lines
603 B
C#
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);
|
|
}
|