forked from liza/Questionable
13 lines
335 B
C#
13 lines
335 B
C#
using System.Text.Json.Serialization;
|
|
using Questionable.Model.Questing.Converter;
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
public sealed class GatheredItem
|
|
{
|
|
public uint ItemId { get; set; }
|
|
public uint AlternativeItemId { get; set; }
|
|
public int ItemCount { get; set; }
|
|
public ushort Collectability { get; set; }
|
|
}
|