mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-09 16:38:21 -05:00
9 lines
178 B
C#
9 lines
178 B
C#
|
namespace Minecraft_Realms_Emulator.Entities
|
|||
|
{
|
|||
|
public class Slot
|
|||
|
{
|
|||
|
public int SlotId { get; set; }
|
|||
|
public string Options { get; set; } = "{}";
|
|||
|
}
|
|||
|
}
|