Questionable/Questionable.Model/Questing/GatheredItem.cs

14 lines
393 B
C#
Raw Normal View History

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; }
/// <summary>
/// Either miner or botanist; null if it is irrelevant (prefers current class/job, then any unlocked ones).
/// </summary>
public uint? ClassJob { get; set; }
2024-08-03 09:17:20 +00:00
}