mirror of
https://github.com/jie65535/gc-opencommand-plugin.git
synced 2025-12-15 19:31:35 +08:00
17 lines
381 B
Java
17 lines
381 B
Java
package com.github.jie65535.opencommand.model;
|
|
|
|
import java.util.Date;
|
|
|
|
public final class Client {
|
|
|
|
public String token;
|
|
public Integer playerId;
|
|
public Date tokenExpireTime;
|
|
|
|
public Client(String token, Integer playerId, Date tokenExpireTime) {
|
|
this.token = token;
|
|
this.playerId = playerId;
|
|
this.tokenExpireTime = tokenExpireTime;
|
|
}
|
|
}
|