mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-03-30 20:48:36 -04:00
18 lines
615 B
C#
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; }
|
|
}
|
|
}
|