1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-07-06 11:59:42 -04:00
Files
MyMcRealms/MyMcRealms/Responses/MinecraftPlayerInfo.cs
2024-05-15 09:33:24 +02:00

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;
}
}