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

22 lines
363 B
TypeScript

class SoftwareFacet extends BaseFacet{
name: string;
description: string;
relation: string;
optional: boolean;
group: string;
qualifier:string;
version:string;
constructor(){
super();
this.relation='';
this.name='';
this.group='';
this.description='';
this.qualifier='';
this.version='';
this.optional=false;
}
}