mirror of https://github.com/ThmmyNoLife/mTHMMY
Thodoris1999
6 years ago
1 changed files with 28 additions and 0 deletions
@ -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…
Reference in new issue