11 lines
No EOL
273 B
TypeScript
11 lines
No EOL
273 B
TypeScript
|
|
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!
|
|
} |