recettes/ng-client/model/step.ts

32 lines
536 B
TypeScript

/**
* Recettes - OpenAPI 3.0
* API recettes
*
* The version of the OpenAPI document: 1.0.0
* Contact: meutel@meutel.net
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Step in receipe
*/
export interface Step {
/**
* position of step in receipe
*/
position?: number;
/**
* step instruction
*/
text?: string;
/**
* step hint
*/
hint?: string;
}