Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / connection / models / FragmentModel.java
1 package com.moiseum.wolnelektury.connection.models;
2
3 import org.parceler.Parcel;
4
5 /**
6  * Created by piotrostrowski on 30.11.2017.
7  */
8 @Parcel(Parcel.Serialization.BEAN)
9 public class FragmentModel {
10
11         private String html;
12         private String title;
13
14         public FragmentModel() {
15         }
16
17         public String getHtml() {
18                 return html;
19         }
20
21         public void setHtml(String html) {
22                 this.html = html;
23         }
24
25         public String getTitle() {
26                 return title;
27         }
28
29         public void setTitle(String title) {
30                 this.title = title;
31         }
32 }