generate new models

This commit is contained in:
Jacob Overgaard
2023-01-25 12:56:29 +01:00
parent 43e9514dbf
commit 2e53a4cd8a
26 changed files with 440 additions and 142 deletions

View File

@@ -0,0 +1,11 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { DictionaryItemTranslationModel } from './DictionaryItemTranslationModel';
export type DictionaryItemUpdateModel = {
name?: string;
translations?: Array<DictionaryItemTranslationModel>;
};