mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 13:49:42 +00:00
10 lines
208 B
C#
10 lines
208 B
C#
namespace SabreTools.Serialization.Models.SeparatedValue
|
|
{
|
|
public class MetadataFile
|
|
{
|
|
[Required]
|
|
public string[]? Header { get; set; }
|
|
|
|
public Row[]? Row { get; set; }
|
|
}
|
|
} |