Model.java 489 B

12345678910111213141516171819
  1. package club.thepenguins.android.data;
  2. public class Model {
  3. public String title, subtitle, Image, Content;
  4. public Model(String mtitle, String msubtitle, String image) {
  5. this.title = mtitle;
  6. this.subtitle = msubtitle;
  7. this.Image = image;
  8. }
  9. public Model(String title, String subtitle, String image, String content) {
  10. this.title = title;
  11. this.subtitle = subtitle;
  12. this.Image = image;
  13. this.Content = content;
  14. }
  15. }