export interface User<Group extends string = string> {
    netId?: string;
    email: string;
    memberOf: Group[];
    displayName: string;
}
