forked from hazza/dspace-angular
24 lines
325 B
TypeScript
24 lines
325 B
TypeScript
import { autoserialize } from 'cerialize';
|
|
|
|
export class Metadatum {
|
|
|
|
/**
|
|
* The metadata field of this Metadatum
|
|
*/
|
|
@autoserialize
|
|
key: string;
|
|
|
|
/**
|
|
* The language of this Metadatum
|
|
*/
|
|
@autoserialize
|
|
language: string;
|
|
|
|
/**
|
|
* The value of this Metadatum
|
|
*/
|
|
@autoserialize
|
|
value: string;
|
|
|
|
}
|