leadercraft/Leadercraft/Server/KeyStruct.cs

14 lines
234 B
C#
Raw Normal View History

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