16 lines
616 B
C#
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; } = [];
|
|
}
|