asb_cloud_front/src/services/api/models/UserDto.ts

20 lines
447 B
TypeScript
Raw Normal View History

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 = {
login?: string | null;
name?: string | null;
surname?: string | null;
patronymic?: string | null;
email?: string | null;
phone?: string | null;
position?: string | null;
2021-08-31 12:30:44 +05:00
id?: number;
idCompany?: number | null;
password?: string | null;
2021-08-31 18:06:48 +05:00
company?: CompanyDto;
2021-10-12 10:39:56 +05:00
}