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