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

21 lines
650 B
Plaintext

/*
* 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 { NEUserWithFriend } from './NEUserWithFriend';
export class PersonSelectParam {
filterList?: string[] = [];
selectLimit: number = 200;
onClickSureButton?: (selectedList: NEUserWithFriend[]) => void = undefined
constructor(onClickSureButton?: (selectedList: NEUserWithFriend[]) => void, filterList: string[] = [],
selectLimit: number = 200) {
this.filterList = filterList
this.selectLimit = selectLimit
this.onClickSureButton = onClickSureButton
}
}