更新云信相关代码
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (c) 2022 NetEase, Inc. All rights reserved.
|
||||
* Use of this source code is governed by a MIT license that can be
|
||||
* found in the LICENSE file.
|
||||
*
|
||||
*/
|
||||
import { ConversationSelectModel } from './ConversationSelectModel';
|
||||
|
||||
|
||||
export class ConversationSelectedParam {
|
||||
selectedList?: ConversationSelectModel[] = [];
|
||||
onRemoveButtonClick?: (item: ConversationSelectModel) => void = undefined // 移除按钮点击事件
|
||||
|
||||
constructor(selectedList?: ConversationSelectModel[],
|
||||
onRemoveButtonClick?: (item: ConversationSelectModel) => void
|
||||
) {
|
||||
this.selectedList = selectedList
|
||||
this.onRemoveButtonClick = onRemoveButtonClick
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user