mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-29 14:05:25 +01:00
35 lines
553 B
Java
35 lines
553 B
Java
package com.gamingmesh.jobs.container;
|
|
|
|
import java.util.UUID;
|
|
|
|
public class PlayerInfo {
|
|
|
|
int id;
|
|
String name = "Unknown";
|
|
private Long seen;
|
|
private UUID uuid;
|
|
|
|
public PlayerInfo(String name, int id, UUID uuid, Long seen) {
|
|
this.name = name;
|
|
this.id = id;
|
|
this.uuid = uuid;
|
|
this.seen = seen;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public int getID() {
|
|
return id;
|
|
}
|
|
|
|
public Long getSeen() {
|
|
return seen;
|
|
}
|
|
|
|
public UUID getUuid() {
|
|
return uuid;
|
|
}
|
|
}
|