10 lines
No EOL
310 B
TypeScript
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[];
|
|
} |