9 lines
203 B
C#
Raw Normal View History

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