2025-01-29 04:40:14 +04:00

14 lines
345 B
C#

namespace Library36.Models
{
public class TableConfig : DocumentConfig
{
public List<string[,]>? Data { get; init; }
public void CheckFields()
{
if (Data == null || Data.Count == 0 || Data.All(x => x.Length == 0))
throw new ArgumentNullException("Data is null");
}
}
}