namespace CraftingApi.Models; public class UpsertCraftingRecipeRequest { public string Name { get; set; } = string.Empty; public string Category { get; set; } = "misc"; public string StationType { get; set; } = "hand"; public List Inputs { get; set; } = []; public List Outputs { get; set; } = []; public int CraftTimeSeconds { get; set; } public bool Enabled { get; set; } = true; }