forked from liza/Questionable
9 lines
202 B
C#
9 lines
202 B
C#
|
namespace Questionable.Model.Questing;
|
|||
|
|
|||
|
public sealed class GatheredItem
|
|||
|
{
|
|||
|
public uint ItemId { get; set; }
|
|||
|
public int ItemCount { get; set; }
|
|||
|
public short Collectability { get; set; }
|
|||
|
}
|