namespace CraftingApi.Models; public class AvailableCraftingRecipeResponse { public CraftingRecipeResponse Recipe { get; set; } = new(); public bool CanCraft { get; set; } public List MissingRequirements { get; set; } = []; }