mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-07-01 09:39:44 -04:00
9 lines
188 B
C#
9 lines
188 B
C#
namespace Minecraft_Realms_Emulator.Responses
|
|
{
|
|
public class SlotResponse
|
|
{
|
|
public int SlotId { get; set; }
|
|
public string Options { get; set; } = null!;
|
|
}
|
|
}
|