1
0
Fork 0
Workship/Workshoppa/GameData/CraftItem.cs

18 lines
567 B
C#
Raw Normal View History

2023-10-01 20:50:21 +00:00
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; }
}