Add multi-layer RIC instance selector
[portal/ric-dashboard.git] / webapp-frontend / src / app / interfaces / dashboard.types.ts
index 1c57005..ea0dff1 100644 (file)
@@ -59,4 +59,9 @@ export interface EcompUser {
 export interface RicInstance {
   key: string;
   name: string;
-}
\ No newline at end of file
+}
+
+export interface RicRegion {
+  name: string;
+  instances: Array<RicInstance>;
+}