mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
// contains only limited subset of available fields
|
|
export class LocationEntity {
|
|
repositoryId: string;
|
|
site: string;
|
|
siteTitle: string;
|
|
container: string;
|
|
path: string;
|
|
file: string;
|
|
parent: LocationParentEntity;
|
|
}
|
|
|
|
export class LocationParentEntity {
|
|
nodeRef: string;
|
|
}
|