First unchecked draft for tags
This commit is contained in:
parent
f936e84168
commit
70b132dc6f
51 changed files with 494 additions and 69 deletions
9
src/api/dtos/RecipeIngredientGroupDto.ts
Normal file
9
src/api/dtos/RecipeIngredientGroupDto.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { AbstractDto } from "./AbstractDto.js";
|
||||
import { RecipeIngredientDto } from "./RecipeIngredientDto.js";
|
||||
|
||||
export class RecipeIngredientGroupDto extends AbstractDto{
|
||||
title?: string;
|
||||
sortOrder!: number;
|
||||
recipeId?: string;
|
||||
ingredients!: RecipeIngredientDto[];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue