mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
19 lines
414 B
Dart
19 lines
414 B
Dart
import 'package:comunic/models/group.dart';
|
|
|
|
/// This class contains information about a conversation linked to a group
|
|
/// to create
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class NewGroupConversation {
|
|
final int groupID;
|
|
final String name;
|
|
final GroupMembershipLevel minMembershipLevel;
|
|
|
|
const NewGroupConversation({
|
|
required this.groupID,
|
|
required this.name,
|
|
required this.minMembershipLevel,
|
|
});
|
|
}
|