mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-29 13:04:59 +00:00
caching works. needs documentation and testing
This commit is contained in:
parent
75f2f738a2
commit
57c53be09f
8 changed files with 262 additions and 73 deletions
14
MinecraftClient/Protocol/SessionToken.cs
Normal file
14
MinecraftClient/Protocol/SessionToken.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue