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[]; }