phys-desc.component.ts 391 B

1234567891011121314
  1. import { Component, Input } from '@angular/core';
  2. import { PhysDesc } from '../../models/evt-models';
  3. import { register } from '../../services/component-register.service';
  4. @Component({
  5. selector: 'evt-phys-desc',
  6. templateUrl: './phys-desc.component.html',
  7. styleUrls: ['./phys-desc.component.scss'],
  8. })
  9. @register(PhysDesc)
  10. export class PhysDescComponent {
  11. @Input() data: PhysDesc;
  12. }