information-system-gui/src/main/webapp/app/shared/facet-model/CustomProperty.ts

12 lines
146 B
TypeScript

class CustomProperty {
name:string;
value:string;
type:string;
constructor(){
this.name='';
this.value='';
this.type='';
}
}