User panel fully functional
This commit is contained in:
parent
e562216658
commit
f67e947f8b
16 changed files with 1346 additions and 641 deletions
11
lib/models/group_definition.dart
Normal file
11
lib/models/group_definition.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue