2025-07-21 15:46:30 +08:00
|
|
|
import 'package:tencent_cloud_chat_sdk/models/v2_tim_conversation.dart';
|
|
|
|
|
|
|
|
class ConversationViewModel {
|
2025-08-21 10:50:38 +08:00
|
|
|
late V2TimConversation conversation;
|
|
|
|
String? faceUrl;
|
|
|
|
String? isCustomAdmin;
|
2025-07-21 15:46:30 +08:00
|
|
|
|
|
|
|
ConversationViewModel({
|
|
|
|
required this.conversation,
|
|
|
|
this.faceUrl,
|
|
|
|
this.isCustomAdmin = '0', // 默认不是管理员
|
|
|
|
});
|
|
|
|
}
|