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