From cd694d64cf1a9be635df6b15168a5950644e5ce2 Mon Sep 17 00:00:00 2001 From: cirakg Date: Mon, 2 Jan 2023 17:00:24 +0100 Subject: Omogucen prikaz istorije korisnika. --- src/main/java/models/History.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/main/java/models/History.java (limited to 'src/main/java/models') 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; + } + + + +} -- cgit v1.2.3