mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
23 lines
499 B
TypeScript
23 lines
499 B
TypeScript
import { CacheableObject } from '../../cache/object-cache.reducer';
|
|
import { ResourceType } from '../../shared/resource-type';
|
|
|
|
export abstract class ConfigObject implements CacheableObject {
|
|
|
|
/**
|
|
* The name for this configuration
|
|
*/
|
|
public name: string;
|
|
|
|
/**
|
|
* The links to all related resources returned by the rest api.
|
|
*/
|
|
public _links: {
|
|
[name: string]: string
|
|
};
|
|
|
|
/**
|
|
* The link to the rest endpoint where this config object can be found
|
|
*/
|
|
self: string;
|
|
}
|