2020-03-27 20:19:28 -04:00
|
|
|
|
using System;
|
|
|
|
|
namespace Leadercraft.Server
|
|
|
|
|
{
|
2020-05-14 23:09:39 -04:00
|
|
|
|
// Json Serialisation struct
|
|
|
|
|
#pragma warning disable 0649
|
2020-03-27 20:19:28 -04:00
|
|
|
|
internal struct KeyStruct
|
|
|
|
|
{
|
|
|
|
|
public string Token;
|
|
|
|
|
|
2020-05-14 23:09:39 -04:00
|
|
|
|
public ulong PlayerID;
|
2020-03-27 20:19:28 -04:00
|
|
|
|
}
|
2020-05-14 23:09:39 -04:00
|
|
|
|
#pragma warning restore 0649
|
2020-03-27 20:19:28 -04:00
|
|
|
|
}
|