forked from ddrilling/asb_cloud_front
20 lines
446 B
TypeScript
20 lines
446 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { CompanyDto } from './CompanyDto';
|
|
|
|
export type UserDto = {
|
|
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;
|
|
}
|