harmony/chatkit/src/main/ets/model/ConversationSelectModel.ets
2025-07-10 08:57:32 +08:00

14 lines
371 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 转发选择页面数据模型
@ObservedV2
export class ConversationSelectModel {
// 会话id
conversationId?: string
// 会话名称
name?: string
// 会话头像
avatar?: ResourceStr
// 是否已选中
@Trace isSelected: boolean = false
// 会话人数,用于展示群人数(单聊默认为 0群聊为群人数
memberCount: number = 0
}