diff --git a/app/src/main/java/gr/thmmy/mthmmy/model/Shout.java b/app/src/main/java/gr/thmmy/mthmmy/model/Shout.java new file mode 100644 index 00000000..4e1148c9 --- /dev/null +++ b/app/src/main/java/gr/thmmy/mthmmy/model/Shout.java @@ -0,0 +1,28 @@ +package gr.thmmy.mthmmy.model; + +public class Shout { + private final String shouter, shouterProfileURL, date, shout; + + public Shout(String shouter, String shouterProfileURL, String date, String shout) { + this.shouter = shouter; + this.shouterProfileURL = shouterProfileURL; + this.date = date; + this.shout = shout; + } + + public String getShouter() { + return shouter; + } + + public String getShouterProfileURL() { + return shouterProfileURL; + } + + public String getDate() { + return date; + } + + public String getShout() { + return shout; + } +}