8509f0896bd136df7fdeb765a10a4cf748bd7782
[portal/sdk.git] /
1 import { Component, OnInit, Input } from '@angular/core';
2
3 @Component({
4   selector: 'app-security',
5   templateUrl: './security.component.html',
6   styleUrls: ['./security.component.css']
7 })
8 export class SecurityComponent implements OnInit {
9
10   @Input("reportId") reportId1 : string;
11
12   
13   constructor() { }
14
15   ngOnInit() {
16   }
17
18 }