First unchecked draft for tags
This commit is contained in:
parent
f936e84168
commit
70b132dc6f
51 changed files with 494 additions and 69 deletions
11
src/api/dtos/CompactRecipeDto.ts
Normal file
11
src/api/dtos/CompactRecipeDto.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
import { AbstractDto } from "./AbstractDto.js";
|
||||
/**
|
||||
* DTO describing the essential header data of a recipe
|
||||
* Used to populate lists
|
||||
*/
|
||||
|
||||
export class CompactRecipeDto extends AbstractDto {
|
||||
title!: string;
|
||||
// @todo add resource and rating here once implemented!
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue