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