diff options
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/model')
-rw-r--r-- | cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts index 638e68c06..cb936413c 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts @@ -21,8 +21,13 @@ limitations under the License. import {BluePrintDetailModel} from './BluePrint.detail.model'; +import {Mapping, Scripts, Template} from '../package-creation/mapping-models/CBAPacakge.model'; -export class PackageDashboardState { +export class PackageDashboardState { configuration: BluePrintDetailModel; + public scripts: Scripts; + public templates: Template; + public mapping: Mapping; + public imports: Map<string, string>; } |