Browse Source

add shout object

pull/61/merge
Thodoris1999 6 years ago
parent
commit
184ece99e3
  1. 28
      app/src/main/java/gr/thmmy/mthmmy/model/Shout.java

28
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;
}
}
Loading…
Cancel
Save