Files
RolemasterDB/src/RolemasterDb.App/Domain/CriticalTable.cs
2026-03-14 00:32:26 +01:00

16 lines
616 B
C#

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; } = [];
}