1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 22:13:25 +01:00
Jobs/com/gamingmesh/jobs/container/Convert.java

42 lines
631 B
Java
Raw Normal View History

2016-03-30 15:42:36 +02:00
package com.gamingmesh.jobs.container;
public class Convert {
int id;
int userid;
String jobname;
int level;
int exp;
public Convert(int id, int userid, String jobname, int level, int exp) {
this.id = id;
this.userid = userid;
this.jobname = jobname;
this.level = level;
this.exp = exp;
}
public Convert() {
}
public int GetId() {
return this.id;
}
public int GetUserid() {
return this.userid;
}
public String GetJobName() {
return this.jobname;
}
public int GetLevel() {
return this.level;
}
public int GetExp() {
return this.exp;
}
}