Add separated-value deserialization test

This commit is contained in:
Matt Nadareski
2023-07-14 13:20:11 -04:00
parent d973ad50d3
commit a32b1d7e6f
11 changed files with 263 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace SabreTools.Models.SeparatedValue
{
public class MetadataFile
{
public string[] Header { get; set; }
public Row[]? Row { get; set; }
}
}