first commit

This commit is contained in:
Blas Santome Ocampo
2026-03-23 09:35:15 +01:00
commit 5ff88d8cf6
17 changed files with 1292 additions and 0 deletions

20
templates/model.mustache Normal file
View File

@@ -0,0 +1,20 @@
{{#models}}
{{#model}}
/**
* {{classname}} DTO
* {{#description}}{{description}}{{/description}}
* Generated from OpenAPI specification
*/
export interface {{classname}}Dto {
{{#vars}}
{{#description}}
/**
* {{description}}
*/
{{/description}}
{{name}}{{^required}}?{{/required}}: {{dataType}};
{{/vars}}
}
{{/model}}
{{/models}}