mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
14 lines
359 B
C#
14 lines
359 B
C#
using System;
|
|
|
|
|
|
namespace MinecraftClient.Protocol
|
|
{
|
|
[Serializable]
|
|
public class SessionToken
|
|
{
|
|
public string ID { get; set; } = string.Empty;
|
|
public string PlayerName { get; set; } = string.Empty;
|
|
public string PlayerID { get; set; } = string.Empty;
|
|
public string ClientID { get; set; } = string.Empty;
|
|
}
|
|
}
|