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,17 @@
namespace RolemasterDb.App.Domain;
public sealed class AttackResult
{
public int Id { get; set; }
public int AttackTableId { get; set; }
public int ArmorTypeId { get; set; }
public int AttackRollBandId { get; set; }
public int Hits { get; set; }
public string? CriticalType { get; set; }
public string? CriticalSeverity { get; set; }
public string RawNotation { get; set; } = string.Empty;
public string? Notes { get; set; }
public AttackTable AttackTable { get; set; } = null!;
public ArmorType ArmorType { get; set; } = null!;
public AttackRollBand AttackRollBand { get; set; } = null!;
}