Add table context URL serializer

This commit is contained in:
2026-03-21 14:00:41 +01:00
parent 58df648bd5
commit aa0639ef66
7 changed files with 258 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
namespace RolemasterDb.App.Frontend.AppState;
public sealed record TableContextSnapshot(
string? TableSlug = null,
string? GroupKey = null,
string? ColumnKey = null,
string? RollBand = null,
int? RollJump = null,
int? ResultId = null,
TableContextMode? Mode = null);