add CompactRecipePoint for loading recipe header data

This commit is contained in:
Anika Raemer 2025-09-28 18:41:56 +02:00
parent 380eb4cd21
commit 3638909761
8 changed files with 97 additions and 35 deletions

View 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!
}