mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Changing constructs that weren't .NET 4.0 compliant. Also fix \n to \r\n line returns in ProtocolHandler.cs
21 lines
489 B
C#
21 lines
489 B
C#
using System;
|
|
|
|
namespace MinecraftClient.Protocol
|
|
{
|
|
[Serializable]
|
|
public class SessionToken
|
|
{
|
|
public string ID { get; set; }
|
|
public string PlayerName { get; set; }
|
|
public string PlayerID { get; set; }
|
|
public string ClientID { get; set; }
|
|
|
|
public SessionToken()
|
|
{
|
|
ID = String.Empty;
|
|
PlayerName = String.Empty;
|
|
PlayerID = String.Empty;
|
|
ClientID = String.Empty;
|
|
}
|
|
}
|
|
}
|