recipe-backend/src/dtos/RecipeIngredientGroupDto.ts
2025-10-04 18:01:46 +02: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[];
}