blob: 12bca98a8054fc39c5a36fc739bd259c170bc3fc [file] [log] [blame]
import { Component, Input } from "@angular/core";
@Component({
selector: 'osee-messaging-edit-structure-field',
template:'<p>Dummy</p>'
})
export class EditStructureFieldComponentMock{
@Input() structureId!: string ;
@Input() header!: string;
@Input() value!: string;
}