summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/model/designer.workflow.ts
blob: 0687c1f471a6e6aee1a7aa40f02b49c8576a2cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export class Workflow {
    inputs: {};
    outputs?: {};
}

export class DeclarativeWorkflow implements Workflow {
    steps: {};
    inputs: {};
    outputs?: {};

    constructor() {
        this.steps = {};
    }
}