2024-08-03 09:17:20 +00:00
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
|
|
|
|
|
|
public sealed class GatheredItem
|
|
|
|
|
{
|
|
|
|
|
public uint ItemId { get; set; }
|
|
|
|
|
public int ItemCount { get; set; }
|
2024-08-03 15:26:49 +00:00
|
|
|
|
public ushort Collectability { get; set; }
|
2024-08-03 09:17:20 +00:00
|
|
|
|
}
|