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