aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/models/History.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/models/History.java')
-rw-r--r--src/main/java/models/History.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/main/java/models/History.java b/src/main/java/models/History.java
new file mode 100644
index 0000000..1ce47e1
--- /dev/null
+++ b/src/main/java/models/History.java
@@ -0,0 +1,39 @@
+package models;
+
+import java.io.Serializable;
+import java.sql.Date;
+
+public class History implements Serializable {
+
+ public MonsterViewModel pokemon;
+ public Date time;
+ public int result;
+
+
+ public History() {
+
+
+
+ }
+ public MonsterViewModel getPokemon() {
+ return pokemon;
+ }
+ public void setPokemon(MonsterViewModel pokemon) {
+ this.pokemon = pokemon;
+ }
+ public Date getTime() {
+ return time;
+ }
+ public void setTime(Date time) {
+ this.time = time;
+ }
+ public int getResult() {
+ return result;
+ }
+ public void setResult(int result) {
+ this.result = result;
+ }
+
+
+
+}