2024-05-21 10:28:49 +02:00

18 lines
615 B
C#

namespace Minecraft_Realms_Emulator.Requests
{
public class SlotOptionsRequest
{
public string SlotName { get; set; } = null!;
public string Version { get; set; } = null!;
public int GameMode { get; set; }
public int Difficulty { get; set; }
public int SpawnProtection { get; set; }
public bool ForceGameMode { get; set; }
public bool Pvp { get; set; }
public bool SpawnAnimals { get; set; }
public bool SpawnMonsters { get; set; }
public bool SpawnNPCs { get; set; }
public bool CommandBlocks { get; set; }
}
}