package models; import java.io.Serializable; public class Monster implements Serializable{ public long id; public String name; public String description; public int hp; public String base64Image; public Monster() { super(); } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public int getHp() { return hp; } public void setHp(int hp) { this.hp = hp; } public String getBase64Image() { return base64Image; } public void setBase64Image(String base64Image) { this.base64Image = base64Image; } }