13 lines
335 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Questionable.Model.Questing.Converter;
namespace Questionable.Model.Questing;
2024-08-03 11:17:20 +02:00
public sealed class GatheredItem
{
public uint ItemId { get; set; }
2024-08-08 01:49:14 +02:00
public uint AlternativeItemId { get; set; }
2024-08-03 11:17:20 +02:00
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
}