mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 11:33:04 +00:00
20 lines
230 B
TypeScript
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();
|
|
}
|
|
}
|