import { ISystemGroupBase } from "./system_group_base"; /** This is a system group see that is the root of all groups. */ export interface IRootGroup extends ISystemGroupBase { /** Gets the unique identifier for this entity. see . */ id: string; /** Gets the name of this system group. Cannot be set. */ name: string; } //# sourceMappingURL=root_group.d.ts.map