1
0
Files
yel-dspace-angular/src/app/core/shared/metadatum.model.ts
William Welling 066bba28af fixed lint errors
2017-07-13 11:19:02 -05:00

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;
}