mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
/**
|
|
* An interface to represent a curation task in the configuration. A CurationTask has a name and a label.
|
|
*/
|
|
export interface CurationTask extends Config {
|
|
name: string;
|
|
label: string;
|
|
}
|