mirror of
https://github.com/chatopera/cosin.git
synced 2025-06-25 02:47:10 +08:00
17 lines
372 B
Java
17 lines
372 B
Java
package com.chatopera.cc.plugins.chatbot;
|
|
|
|
import com.chatopera.cc.socketio.message.ChatMessage;
|
|
import com.chatopera.compose4j.AbstractContext;
|
|
|
|
public class ChatbotContext extends AbstractContext {
|
|
private ChatMessage resp;
|
|
|
|
public ChatMessage getResp() {
|
|
return resp;
|
|
}
|
|
|
|
public void setResp(ChatMessage resp) {
|
|
this.resp = resp;
|
|
}
|
|
}
|