recipe-backend/src/api/dtos/RecipeIngredientGroupDto.ts
2026-02-21 08:28:15 +01:00

9 lines
No EOL
281 B
TypeScript

import { AbstractDto } from "./AbstractDto.js";
import { RecipeIngredientDto } from "./RecipeIngredientDto.js";
export class RecipeIngredientGroupDto extends AbstractDto{
title?: string;
sortOrder!: number;
recipeId?: string;
ingredients!: RecipeIngredientDto[];
}