summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/model/designer.topologyTemplate.model.ts
blob: b85a6139a66986890daeba92af83c4f547609b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { DeclarativeWorkflow } from './designer.workflow';
import { NodeTemplate } from './desinger.nodeTemplate.model';

export class TopologyTemplate {

    workflows: {};
    'node_templates': {};

    constructor() {
        this.workflows = {};
        this.node_templates = {};
    }
}