/** * Object containing information of user and roles. */ import { IProfileUpdateRequest } from './profile-update.request'; export interface IUser extends IProfileUpdateRequest { /** * Id of user. */ readonly userId?: string; /** * Username for login. */ readonly username?: string; }