caching works. needs documentation and testing

This commit is contained in:
initsuj 2016-03-02 17:11:15 -07:00
parent 75f2f738a2
commit 57c53be09f
8 changed files with 262 additions and 73 deletions

View 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;
}
}