CSVMetricsLogger/Tests/TestDataRecordStructMixed.cs

9 lines
204 B
C#
Raw Normal View History

2024-05-05 10:20:54 +00:00
using CSV_Metrics_Logger;
namespace Tests;
[CSVRecord]
public readonly partial record struct TestDataRecordStructMixed(string Area, int Step, float Value, int Z)
{
public bool State { get; init; }
}