recipe-app/frontend/src/api/dtos/RecipeInstructionStepDto.ts
2025-10-11 07:32:50 +02:00

9 lines
No EOL
221 B
TypeScript

import { UUID } from "crypto";
import { AbstractDto } from "./AbstractDto.ts";
export class RecipeInstructionStepDto extends AbstractDto{
id?: string;
text!: string;
sortOrder!: number;
recipeId?: UUID;
}