package net.t2code.opsecurity.objects; public class PlayerObject { public String playerName; public String uuid; public PlayerObject(String playerName, String uuid) { this.playerName = playerName; this.uuid = uuid; } }