using System; using System.Collections.Generic; namespace stupid.solutions; [Serializable] public class ItemTemplate { public int StackMaxSize { get; set; } public bool QuestItem { get; set; } public string Description { get; set; } public Dictionary Slots { get; set; } }