11 lines
215 B
C#
11 lines
215 B
C#
namespace Adaptation.FileHandlers.csv;
|
|
|
|
public class Record
|
|
{
|
|
|
|
public string Test { get; set; }
|
|
public string Date { get; set; }
|
|
public string Value { get; set; }
|
|
public string Event { get; set; }
|
|
|
|
} |