namespace RolemasterDb.App.Domain; public sealed class CriticalTable { public int Id { get; set; } public string Slug { get; set; } = string.Empty; public string DisplayName { get; set; } = string.Empty; public string Family { get; set; } = "standard"; public string SourceDocument { get; set; } = string.Empty; public string? Notes { get; set; } public List Groups { get; set; } = []; public List Columns { get; set; } = []; public List RollBands { get; set; } = []; public List Results { get; set; } = []; }