summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/pages/software-profile/software-profile.component.ts
blob: bff05a1c057cd45f11ce77614d115356e4f9823e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component } from '@angular/core';

import { SoftwareProfileService } from 'src/app/api/software-profile.service';
import { SoftwareProfile } from 'src/app/model/software-profile';

@Component({
  selector: 'software-profile',
  templateUrl: './software-profile.component.html',
  styleUrls: [ './software-profile.component.scss' ]
})
export class SoftwareProfileComponent {
  // this tells the tabs component which Pages
  // should be each tab's root Page
  constructor(public softwareProfileService: SoftwareProfileService) {
  }
  
}