23 lines
411 B
Java
23 lines
411 B
Java
package de.w665.testing.dto;
|
|
|
|
public class SendMessageCommand {
|
|
private String roomId;
|
|
private String content;
|
|
|
|
public String getRoomId() {
|
|
return roomId;
|
|
}
|
|
|
|
public void setRoomId(String roomId) {
|
|
this.roomId = roomId;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
}
|