Files
dspace-angular/src/app/core/shared/content-source.model.ts
2019-07-11 17:57:54 +02:00

20 lines
230 B
TypeScript

import { v4 as uuid } from 'uuid';
export class ContentSource {
uuid: string;
enabled = false;
provider: string;
set: string;
format: string;
harvestType: number;
constructor() {
this.uuid = uuid();
}
}