package cn.wildfire.chat.kit.contact.model;
|
|
/**
|
* @author kimi
|
* @description
|
* @date 2021-02-03 14:25
|
*/
|
|
|
public class NewFriendSearchEvent {
|
private String searchKey;
|
|
public NewFriendSearchEvent(String searchKey) {
|
this.searchKey = searchKey;
|
}
|
|
public String getSearchKey() {
|
return searchKey;
|
}
|
|
public void setSearchKey(String searchKey) {
|
this.searchKey = searchKey;
|
}
|
}
|