service-check-conjunction.component.ts 320 B

12345678910
  1. import { Component, Input } from '@angular/core';
  2. @Component({
  3. selector: 'app-service-check-conjunction',
  4. templateUrl: './service-check-conjunction.component.html',
  5. styleUrls: ['./service-check-conjunction.component.scss']
  6. })
  7. export class ServiceCheckConjunctionComponent {
  8. @Input() model?: CheckConjunction;
  9. }