summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/model/designer.topologyTemplate.model.ts
blob: 4e73c79867bc2cbdacaa4f37211bee517d8900da (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: Map<string, DeclarativeWorkflow>;
    'node_templates': Map<string, NodeTemplate>;

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