16 lines
300 B
C#
16 lines
300 B
C#
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<string, SlotData> Slots { get; set; }
|
|
}
|