1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-04-10 09:58:36 -04:00
MyMcRealms/MyMcRealms/Responses/MinecraftPlayerInfo.cs

8 lines
198 B
C#

namespace MyMcRealms.Responses
{
public class MinecraftPlayerInfo
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
}
}