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,19 @@
namespace RolemasterDb.App.Domain;
public sealed class CriticalResult
{
public int Id { get; set; }
public int CriticalTableId { get; set; }
public int? CriticalGroupId { get; set; }
public int CriticalColumnId { get; set; }
public int CriticalRollBandId { get; set; }
public string RawCellText { get; set; } = string.Empty;
public string DescriptionText { get; set; } = string.Empty;
public string? RawAffixText { get; set; }
public string ParsedJson { get; set; } = "{}";
public string ParseStatus { get; set; } = "verified";
public CriticalTable CriticalTable { get; set; } = null!;
public CriticalGroup? CriticalGroup { get; set; }
public CriticalColumn CriticalColumn { get; set; } = null!;
public CriticalRollBand CriticalRollBand { get; set; } = null!;
}