forked from winnie/MinePanel
17 lines
321 B
Java
17 lines
321 B
Java
package de.winniepat.minePanel.persistence;
|
|
|
|
import java.util.UUID;
|
|
|
|
public record PlayerActivity(
|
|
UUID uuid,
|
|
long firstJoined,
|
|
long lastSeen,
|
|
long totalPlaytimeSeconds,
|
|
long totalSessions,
|
|
long currentSessionStart,
|
|
String lastIp,
|
|
String lastCountry
|
|
) {
|
|
}
|
|
|