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

@ -2,6 +2,7 @@ import { UUID } from "crypto";
import { AbstractDto } from "./AbstractDto.ts";
export class RecipeInstructionStepDto extends AbstractDto{
id?: string;
text!: string;
sortOrder!: number;
recipeId?: UUID;