User panel fully functional

This commit is contained in:
Andrew 2023-04-25 15:08:03 +07:00
parent e562216658
commit f67e947f8b
16 changed files with 1346 additions and 641 deletions

View file

@ -0,0 +1,13 @@
class UserDefinition {
final int id;
final String username;
final String password;
final String accessToken;
const UserDefinition({
required this.id,
required this.username,
required this.password,
required this.accessToken,
});
}