first successful ws impl

This commit is contained in:
Zhongheng Liu 2023-12-21 14:12:59 +02:00
commit 4329c5067f
No known key found for this signature in database
14 changed files with 175 additions and 154 deletions

View file

@ -0,0 +1,25 @@
package me.imsonmia.epqapi.model;
public class Message {
private String from;
private String to;
private String content;
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}