...vibing UI

This commit is contained in:
2026-06-17 22:04:42 -04:00
parent 36bd610ca4
commit 1d05e18306
26 changed files with 7210 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Model;
public record DebuffDoc : DocEntry
{
public required string Character { get; init; }
public string? MaxStacks { get; init; }
public string? Duration { get; init; }
public string? Description { get; init; }
public string? ParryChanceBonus { get; init; }
public string? ManaRestoreBase { get; init; }
public string? ManaRestorePerStack { get; init; }
}