Workship/Workshoppa/GameData/CraftItem.cs
2023-10-01 22:50:21 +02:00

18 lines
567 B
C#

namespace Workshoppa.GameData;
public class CraftItem
{
public uint ItemId { get; set; }
public uint IconId { get; set; }
public string? ItemName { get; set; }
public int CrafterIconId { get; set; }
public uint ItemCountPerStep { get; set; }
public uint ItemCountNQ { get; set; }
public uint ItemCountHQ { get; set; }
public uint Experience { get; set; }
public uint StepsComplete { get; set; }
public uint StepsTotal { get; set; }
public bool Finished { get; set; }
public uint CrafterMinimumLevel { get; set; }
}