mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 03:53:02 +00:00
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