Initial commit
This commit is contained in:
15
src/RolemasterDb.App/Domain/CriticalTable.cs
Normal file
15
src/RolemasterDb.App/Domain/CriticalTable.cs
Normal 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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user