mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import { DSpaceObject } from './dspace-object.model';
|
||
import { ResourceType } from './resource-type';
|
||
|
||
/**
|
||
* Model class for the Site object
|
||
*/
|
||
export class Site extends DSpaceObject {
|
||
|
||
static type = new ResourceType('site');
|
||
|
||
}
|