add CompactRecipePoint for loading recipe header data
This commit is contained in:
parent
380eb4cd21
commit
3638909761
8 changed files with 97 additions and 35 deletions
11
src/dtos/CompactRecipeDto.ts
Normal file
11
src/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