16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
/**
|
|
* 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;
|
|
}
|