mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-13 18:08:23 -05:00
10 lines
257 B
C#
10 lines
257 B
C#
namespace Minecraft_Realms_Emulator.Responses
|
|
{
|
|
public class MinecraftPlayerInfo
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public object Result { get; set; }
|
|
}
|
|
}
|