Catalog alignment
[sdc.git] / catalog-ui / src / app / view-models / workspace / tabs / interface-operation / interface-operation-view-model.ts
1 /*
2
3 * Copyright (c) 2018 Amdocs Intellectual Property.
4
5 *
6
7 * Licensed under the Apache License, Version 2.0 (the "License");
8
9 * you may not use this file except in compliance with the License.
10
11 * You may obtain a copy of the License at
12
13 *
14
15 *     http://www.apache.org/licenses/LICENSE-2.0
16
17 *
18
19 * Unless required by applicable law or agreed to in writing, software
20
21 * distributed under the License is distributed on an "AS IS" BASIS,
22
23 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24
25 * See the License for the specific language governing permissions and
26
27 * limitations under the License.
28
29 */
30 'use strict';
31
32 import {IWorkspaceViewModelScope} from "app/view-models/workspace/workspace-view-model";
33
34 export interface IInterfaceOperationViewModelScope extends IWorkspaceViewModelScope {};
35
36 export class InterfaceOperationViewModel {
37
38     static '$inject' = [
39         '$scope'
40     ];
41
42     constructor(private $scope: IInterfaceOperationViewModelScope) {}
43
44 }