diff --git a/lib/pages/credentials_prompt.dart b/lib/pages/credentials_prompt.dart index 760fc3a..7130073 100644 --- a/lib/pages/credentials_prompt.dart +++ b/lib/pages/credentials_prompt.dart @@ -98,3 +98,11 @@ class CredentialsPrompt extends State { ))); } } + +class User { + String name; + String passwordHash; + String passwordSalt; + + User({required this.name, required this.passwordHash, required this.passwordSalt}); +} \ No newline at end of file