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,11 @@
class UserInGroupDefinition {
final int id;
final int userId;
final int groupId;
const UserInGroupDefinition({
required this.id,
required this.userId,
required this.groupId,
});
}