16 lines
221 B
Java
16 lines
221 B
Java
package com.baeldung.model;
|
|
|
|
public class Message {
|
|
|
|
private String from;
|
|
private String text;
|
|
|
|
public String getText() {
|
|
return text;
|
|
}
|
|
|
|
public String getFrom() {
|
|
return from;
|
|
}
|
|
}
|