14 lines
281 B
Java
14 lines
281 B
Java
package com.xscm.moduleutil.bean;
|
||
|
||
/**
|
||
*@author qx
|
||
*@data 2025/6/12
|
||
*@description: 输入文字,传递给聊天室PublicScreenEaseChatFragment
|
||
*/
|
||
public class RoomInputEvent {
|
||
public String text;
|
||
public RoomInputEvent(String text) {
|
||
this.text = text;
|
||
}
|
||
}
|