mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 03:53:02 +00:00
[TLC-674] Duplicate detection comp, template, i18n
Duplicate data is accessed in the submission section, pooled tasks list and claimed tasks list.
This commit is contained in:
24
src/app/shared/object-list/duplicate-data/duplicate.model.ts
Normal file
24
src/app/shared/object-list/duplicate-data/duplicate.model.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import {autoserialize} from "cerialize";
|
||||
import {MetadataMap} from "../../../core/shared/metadata.models";
|
||||
|
||||
export class Duplicate {
|
||||
/**
|
||||
* The item title
|
||||
*/
|
||||
@autoserialize
|
||||
title: string;
|
||||
@autoserialize
|
||||
uuid: string;
|
||||
@autoserialize
|
||||
workflowItemId: bigint;
|
||||
@autoserialize
|
||||
workspaceItemId: bigint;
|
||||
@autoserialize
|
||||
owningCollection: string;
|
||||
|
||||
/**
|
||||
* Metadata for the bitstream (e.g. dc.description)
|
||||
*/
|
||||
@autoserialize
|
||||
metadata: MetadataMap;
|
||||
}
|
Reference in New Issue
Block a user