| 12345678910 |
- import { Component, Input } from '@angular/core';
- @Component({
- selector: 'app-service-check-conjunction',
- templateUrl: './service-check-conjunction.component.html',
- styleUrls: ['./service-check-conjunction.component.scss']
- })
- export class ServiceCheckConjunctionComponent {
- @Input() model?: CheckConjunction;
- }
|