Create AuthCheckArguments andf add it to / route

This commit is contained in:
2025-01-14 12:57:11 +02:00
parent 1fb3fcb1e6
commit 02e894d00b
2 changed files with 15 additions and 9 deletions

View File

@@ -159,3 +159,13 @@ class ClaimStatementGenerationArguments {
this.sig_path,
);
}
class AuthArguments {
final bool personalSelected;
final bool firstBoot;
AuthArguments(
this.personalSelected,
this.firstBoot,
);
}