namespace OpenTheBox.Core.Crafting;
///
/// The lifecycle status of a crafting job.
///
public enum CraftingJobStatus
{
/// The workstation is actively processing the recipe.
InProgress,
/// Processing is complete; the result is ready to be collected.
Completed,
/// The crafted item has been collected by the player.
Collected
}