1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-04-18 05:47:02 -04:00

9 lines
163 B
C#

namespace MyMcRealms.Entities
{
public class Slot
{
public int SlotId { get; set; }
public string Options { get; set; } = "{}";
}
}