d6ff39fa8ce041ed5c90006a657de6af492cc26d
[working/Evergreen.git] /
1 import {Directive, Input} from '@angular/core';
2
3 /**
4  * A subfield that a user can edit, which will later be
5  * compiled into MARC
6  */
7
8 @Directive({
9   selector: 'eg-marc-simplified-editor-subfield',
10 })
11 export class MarcSimplifiedEditorSubfieldDirective {
12
13   @Input() code: string;
14   @Input() defaultValue: string;
15
16 }