CSVMetricsLogger/Tests/TestDataRegularStruct.cs

13 lines
214 B
C#
Raw Permalink Normal View History

2024-05-05 10:20:54 +00:00
using CSV_Metrics_Logger;
namespace Tests;
[CSVRecord]
public partial struct TestDataRegularStruct
{
public string City { get; set; }
public uint Age { get; set; }
public double Size { get; set; }
}