projects/netgrif-components-core/src/lib/resources/interface/group.ts
Object from Backend
Properties |
childGroups |
childGroups:
|
Type : Array<any>
|
id |
id:
|
Type : number
|
members |
members:
|
Type : Array<any>
|
export interface GroupsInterface {
groups: [];
}
/**
* Object from Backend
*/
export interface GroupInterface {
id: number;
name: string;
}
/**
* Object from Backend
*/
export interface Group {
id: number;
members: Array<any>;
childGroups: Array<any>;
}