Add a primitive type for a User

This commit is contained in:
zontreck 2024-07-01 23:12:51 -07:00
parent 23d93a7f9a
commit bdebdf89d5

View file

@ -98,3 +98,11 @@ class CredentialsPrompt extends State<CredentialsPage> {
)));
}
}
class User {
String name;
String passwordHash;
String passwordSalt;
User({required this.name, required this.passwordHash, required this.passwordSalt});
}