64503: MetadataConfig in ContentSource + JSDocs

This commit is contained in:
Kristof De Langhe
2019-08-20 17:54:58 +02:00
parent 1b9bc2f7a3
commit 8103321245
5 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
/**
* 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;
}