recipe-backend/src/dtos/RecipeIngredientGroupDto.ts
2025-09-27 18:21:10 +02:00

10 lines
No EOL
310 B
TypeScript

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