Files
dspace-angular/src/app/core/shared/metadata-config.model.ts
2019-08-20 17:54:58 +02:00

20 lines
302 B
TypeScript

/**
* A model class that holds information about a certain metadata configuration
*/
export class MetadataConfig {
/**
* A unique indentifier
*/
id: string;
/**
* The label used for display
*/
label: string;
/**
* The namespace of the metadata
*/
nameSpace: string;
}