11 lines
201 B
Dart
11 lines
201 B
Dart
class GroupDefinition {
|
|
final int id;
|
|
final String name;
|
|
final String description;
|
|
|
|
const GroupDefinition({
|
|
required this.id,
|
|
required this.name,
|
|
required this.description,
|
|
});
|
|
}
|