mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-12 17:38:22 -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; } = "{}";
|
|
}
|
|
}
|