first successful ws impl
This commit is contained in:
parent
74700bfdc2
commit
4329c5067f
14 changed files with 175 additions and 154 deletions
25
src/main/java/me/imsonmia/epqapi/model/Message.java
Normal file
25
src/main/java/me/imsonmia/epqapi/model/Message.java
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue