Files
SabreTools.Models/SeparatedValue/MetadataFile.cs

18 lines
324 B
C#
Raw Normal View History

2023-09-04 00:07:54 -04:00
namespace SabreTools.Models.SeparatedValue
{
public class MetadataFile
{
[Required]
2023-09-04 01:31:30 -04:00
#if NET48
public string[] Header { get; set; }
#else
2023-09-04 00:07:54 -04:00
public string[]? Header { get; set; }
2023-09-04 01:31:30 -04:00
#endif
2023-09-04 00:07:54 -04:00
2023-09-04 01:31:30 -04:00
#if NET48
public Row[] Row { get; set; }
#else
2023-09-04 00:07:54 -04:00
public Row[]? Row { get; set; }
2023-09-04 01:31:30 -04:00
#endif
2023-09-04 00:07:54 -04:00
}
}