forked from hazza/dspace-angular
63669: Intermediate commit
This commit is contained in:
19
src/app/core/shared/content-source.model.ts
Normal file
19
src/app/core/shared/content-source.model.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user