mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
15 lines
359 B
C#
15 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;
|
|||
|
|
}
|
|||
|
|
}
|