Merge from ecomp 718fd196 - Modern UI
[vid.git] / vid-webpack-master / src / app / shared / models / ncfModel.ts
1 import {NodeModelResponseInterface} from "./nodeModel";
2
3 export interface NcfProperties {
4   networkCollectionFunction: string;
5   networkCollectionDescription: string;
6 }
7
8 export interface NcfModelInterface extends NodeModelResponseInterface {
9   networkCollectionProperties: NcfProperties;
10 }