export interface RoleStub {
    /**
     * The unique id of the role
     */
    id: string;
    /**
     * The name of the role.
     */
    name: string;
}
