10 lines
149 B
C#
10 lines
149 B
C#
using System;
|
|
namespace Leadercraft.Server
|
|
{
|
|
internal struct NewKeyStruct
|
|
{
|
|
public ulong PlayerID;
|
|
|
|
public string PlayerName;
|
|
}
|
|
}
|