You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
950 B

package org.poopki.duckdns.user_db.Invite;
import org.bukkit.entity.Player;
import org.poopki.duckdns.user_db.Array.FarmArray;
import org.poopki.duckdns.user_db.Array.NationArray;
import org.poopki.duckdns.user_db.UserInfoArray;
import java.util.UUID;
public class Invitation {
protected long Time;
protected String Type;
protected UUID uuid;
protected Player sender;
protected Player receiver;
public Invitation(long Time, String Type, UUID uuid, Player sender, Player receiver){
this.Time = Time;
this.Type = Type;
this.uuid = uuid;
this.sender = sender;
this.receiver = receiver;
}
public long getTime(){
return this.Time;
}
public String getType(){
return this.Type;
}
public UUID getUUID(){
return this.uuid;
}
public Player getSender(){return this.sender;}
public Player getReceiver(){ return this.receiver;}
}