add dtos and fix entities including migrations

This commit is contained in:
Anika Raemer 2025-09-27 18:21:10 +02:00
parent ad6ee64565
commit d94251dea4
9 changed files with 125 additions and 3 deletions

View file

@ -0,0 +1,10 @@
import { UUID } from "crypto";
import { AbstractDto } from "./AbstractDto.js";
import { RecipeIngredientDto } from "./RecipeIngredientDto.js";
export class RecipeIngredientGroupDto extends AbstractDto{
title?: string;
sortOrder?: string;
recipeId?: UUID;
ingredients?: RecipeIngredientDto[];
}