1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-11-09 16:38:21 -05:00
MyMcRealms/Minecraft-Realms-Emulator/Entities/Slot.cs

9 lines
178 B
C#
Raw Normal View History

2024-04-20 03:20:30 -04:00
namespace Minecraft_Realms_Emulator.Entities
{
public class Slot
{
public int SlotId { get; set; }
public string Options { get; set; } = "{}";
}
}