aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/models/History.java
blob: 1ce47e1cdde82fd4648842c6c9e90b7707778c75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
	}
	
	

}