mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
import { HALLink } from './hal-link.model';
|
|
|
|
export class HALResource {
|
|
_links: {
|
|
self: HALLink
|
|
[k: string]: HALLink;
|
|
};
|
|
}
|