basic instructions editor

This commit is contained in:
Anika Raemer 2025-10-11 07:32:50 +02:00
parent 47ffe8c74d
commit e94be51f3e
10 changed files with 108 additions and 33 deletions

View file

@ -1,4 +1,5 @@
import type { IngredientGroupModel } from "./IngredientGroupModel"
import type { InstructionStepModel } from "./InstructionStepModel"
import type { ServingsModel } from "./ServingsModel"
/**
@ -22,7 +23,7 @@ export interface RecipeModel {
ingredientGroupList: IngredientGroupModel[]
/** Preparation instructions */
instructions: string
instructionStepList: InstructionStepModel[]
/** Number of servings, e.g., for 4 person, 12 cupcakes, 2 glasses */
servings: ServingsModel