namespace CraftingApi.Models; public class CraftRecipeRequest { public string RecipeKey { get; set; } = string.Empty; public int Quantity { get; set; } = 1; public string? LocationId { get; set; } public string? StationObjectId { get; set; } }