member_webapp/@overflow/infra/component/infra-host-os.component.ts

18 lines
324 B
TypeScript
Raw Normal View History

2018-06-14 06:45:39 +00:00
import {
Component, Input
} from '@angular/core';
import { InfraHostOS } from '@overflow/commons-typescript/model/infra';
@Component({
selector: 'of-infra-host-os',
templateUrl: './infra-host-os.component.html',
})
export class InfraHostOSComponent {
@Input() infraHostOS: InfraHostOS;
constructor(
) {
}
}