11 lines
203 B
Dart
11 lines
203 B
Dart
class UserInGroupDefinition {
|
|
final int id;
|
|
final int userId;
|
|
final int groupId;
|
|
|
|
const UserInGroupDefinition({
|
|
required this.id,
|
|
required this.userId,
|
|
required this.groupId,
|
|
});
|
|
}
|