mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
Fixed property groups form Group and EPerson models and added comments
This commit is contained in:
@@ -1,12 +1,28 @@
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
import { DSpaceObject } from '../../shared/dspace-object.model';
|
||||
import { PaginatedList } from '../../data/paginated-list';
|
||||
import { RemoteData } from '../../data/remote-data';
|
||||
|
||||
export class Group extends DSpaceObject {
|
||||
|
||||
public groups: Group[];
|
||||
/**
|
||||
* List of Groups that this Group belong to
|
||||
*/
|
||||
public groups: Observable<RemoteData<PaginatedList<Group>>>;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Group
|
||||
*/
|
||||
public handle: string;
|
||||
|
||||
/**
|
||||
* A string representing the name of this Group
|
||||
*/
|
||||
public name: string;
|
||||
|
||||
/**
|
||||
* A string representing the name of this Group is permanent
|
||||
*/
|
||||
public permanent: boolean;
|
||||
}
|
||||
|
Reference in New Issue
Block a user