Initial commit

This commit is contained in:
2026-03-14 00:32:26 +01:00
commit 70a35f3985
109 changed files with 62554 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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<CriticalGroup> Groups { get; set; } = [];
public List<CriticalColumn> Columns { get; set; } = [];
public List<CriticalRollBand> RollBands { get; set; } = [];
public List<CriticalResult> Results { get; set; } = [];
}