Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / connection / models / FragmentModel.java
diff --git a/Android/app/src/main/java/com/moiseum/wolnelektury/connection/models/FragmentModel.java b/Android/app/src/main/java/com/moiseum/wolnelektury/connection/models/FragmentModel.java
new file mode 100644 (file)
index 0000000..6c4c866
--- /dev/null
@@ -0,0 +1,32 @@
+package com.moiseum.wolnelektury.connection.models;
+
+import org.parceler.Parcel;
+
+/**
+ * Created by piotrostrowski on 30.11.2017.
+ */
+@Parcel(Parcel.Serialization.BEAN)
+public class FragmentModel {
+
+       private String html;
+       private String title;
+
+       public FragmentModel() {
+       }
+
+       public String getHtml() {
+               return html;
+       }
+
+       public void setHtml(String html) {
+               this.html = html;
+       }
+
+       public String getTitle() {
+               return title;
+       }
+
+       public void setTitle(String title) {
+               this.title = title;
+       }
+}