mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
20 lines
302 B
TypeScript
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;
|
|
}
|