11 lines
139 B
C#
11 lines
139 B
C#
|
using System;
|
|||
|
namespace Leadercraft.Server
|
|||
|
{
|
|||
|
internal struct KeyStruct
|
|||
|
{
|
|||
|
public string Token;
|
|||
|
|
|||
|
public int PlayerID;
|
|||
|
}
|
|||
|
}
|