Files
Greenify/Server/src/main/java/hello/Greeting.java
2019-02-25 16:10:41 +01:00

20 lines
343 B
Java

package hello;
public class Greeting {
private static long id;
private static String content;
public Greeting(long id, String content) {
this.id = id;
this.content = content;
}
public static long getId() {
return id;
}
public static String getContent() {
return content;
}
}