using System; namespace FilterAPI { public class ItemOptions { public Byte Type { get; set; } public Byte Amount { get; set; } public Byte Upgrade { get; set; } public Int16 STR { get; set; } public Int16 END { get; set; } public Int16 DEX { get; set; } public Int16 INT { get; set; } public Int16 SPR { get; set; } public Int64 RunOut { get; set; } public Int32 LeftToUse { get; set; } public Int32 Durability { get; set; } } }