forked from ddrilling/asb_cloud_front
24 lines
617 B
TypeScript
24 lines
617 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { CompanyDto } from './CompanyDto';
|
|
import type { PermissionDto } from './PermissionDto';
|
|
|
|
export type UserTokenDto = {
|
|
id?: number;
|
|
login?: string | null;
|
|
name?: string | null;
|
|
surname?: string | null;
|
|
patronymic?: string | null;
|
|
email?: string | null;
|
|
phone?: string | null;
|
|
position?: string | null;
|
|
idCompany?: number | null;
|
|
idState?: number | null;
|
|
company?: CompanyDto;
|
|
roleNames?: Array<string> | null;
|
|
permissions?: Array<PermissionDto> | null;
|
|
token?: string | null;
|
|
}
|