Renaming of rest resources

This commit is contained in:
araemer 2026-02-21 08:00:46 +01:00
parent f936e84168
commit face2f45e4
41 changed files with 61 additions and 61 deletions

View file

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