mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
export class ItemOperation {
|
|
|
|
operationKey: string;
|
|
operationUrl: string;
|
|
disabled: boolean;
|
|
|
|
constructor(operationKey: string, operationUrl: string) {
|
|
this.operationKey = operationKey;
|
|
this.operationUrl = operationUrl;
|
|
}
|
|
|
|
}
|