package pl.pwr.smartkill.obj;
public class KillData {
private Number id;
private Number matchId;
public Number getId() {
return this.id;
}
public void setId(Number id) {
this.id = id;
}
public Number getMatchId() {
return this.matchId;
}
public void setMatchId(Number matchId) {
this.matchId = matchId;
}
}