2021-08-31 12:30:44 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
2021-08-31 18:06:48 +05:00
|
|
|
import type { CompanyDto } from './CompanyDto';
|
|
|
|
|
2021-08-31 12:30:44 +05:00
|
|
|
export type UserDto = {
|
2021-12-13 10:19:07 +05:00
|
|
|
id?: number;
|
2021-08-31 12:30:44 +05:00
|
|
|
login?: string | null;
|
|
|
|
name?: string | null;
|
|
|
|
surname?: string | null;
|
|
|
|
patronymic?: string | null;
|
2021-10-20 14:32:51 +05:00
|
|
|
email?: string | null;
|
|
|
|
phone?: string | null;
|
|
|
|
position?: string | null;
|
2021-08-31 12:30:44 +05:00
|
|
|
idCompany?: number | null;
|
2021-12-27 15:18:35 +05:00
|
|
|
idState?: number | null;
|
2021-08-31 18:06:48 +05:00
|
|
|
company?: CompanyDto;
|
2021-10-12 10:39:56 +05:00
|
|
|
}
|