14 lines
327 B
Dart
14 lines
327 B
Dart
import 'package:tencent_cloud_chat_sdk/models/v2_tim_conversation.dart';
|
|
|
|
class ConversationViewModel {
|
|
late V2TimConversation conversation;
|
|
String? faceUrl;
|
|
String? isCustomAdmin;
|
|
|
|
ConversationViewModel({
|
|
required this.conversation,
|
|
this.faceUrl,
|
|
this.isCustomAdmin = '0', // 默认不是管理员
|
|
});
|
|
}
|