import { Component, OnInit, AfterContentInit, Input, OnChanges } from '@angular/core';
import { InfraHost } from '@overflow/commons-typescript/model/infra';


@Component({
  selector: 'of-infra-host-summary',
  templateUrl: './infra-host-summary.component.html',
})
export class InfraHostSummaryComponent implements OnInit, AfterContentInit, OnChanges {

  @Input() host: InfraHost;
  @Input() visible: boolean;

  constructor(
  ) { }

  ngOnInit() {
  }

  ngAfterContentInit() {
  }

  ngOnChanges() {
  }

}