summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/model/ModelType.model.ts
blob: c8498fa36a680efb69fcd2ee87dc6a97bcc5cea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export class ModelType {
    modelName: string;
    derivedFrom: string;
    definitionType: string;
    definition: object;
    description: string;
    version: string;
    tags: string;
    creationDate: string;
    updatedBy: string;

}