无法发送私聊问题
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.yizhuan.xchat_android_core.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class PrivateChatLimitInfo implements Serializable {
|
||||
private boolean chat;
|
||||
private String message;
|
||||
private int wealthLevel;
|
||||
private int charmLevel;
|
||||
}
|
@@ -0,0 +1,19 @@
|
||||
package com.yizhuan.xchat_android_core.room.event;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class MessageSizeEvent implements Serializable {
|
||||
private int size;
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public MessageSizeEvent(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user