import { User } from './User'; export interface UserAssignment { User?: User; Roles?: string[]; IsAdmin?: boolean; readonly Accepted?: boolean; }