summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/model/desinger.nodeTemplate.model.ts
blob: 9bd56e5d530dd0031579276546530313b442dd64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export class NodeTemplate {
    type: string;
    properties?: {
        'dependency-node-template'?: string[]
    };
    interfaces?: {};
    artifacts?: {};
    cabapilities?: {};
    requirements?: {};

    constructor(type) {
        this.type = type;
        this.properties = {};
    }
}