mirror of
https://github.com/Zrips/Jobs.git
synced 2024-12-01 23:13:48 +01:00
27 lines
407 B
Java
27 lines
407 B
Java
package com.gamingmesh.jobs.container;
|
|
|
|
public class PlayerInfo {
|
|
|
|
int id;
|
|
String name;
|
|
private Long seen;
|
|
|
|
public PlayerInfo(String name, int id, Long seen) {
|
|
this.name = name;
|
|
this.id = id;
|
|
this.seen = seen;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public int getID() {
|
|
return id;
|
|
}
|
|
|
|
public Long getSeen() {
|
|
return seen;
|
|
}
|
|
}
|