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 GroupDefinition {
final int id;
final String name;
final String description;
const GroupDefinition({
required this.id,
required this.name,
required this.description,
});
}