forked from ddrilling/asb_cloud_front
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
|
/* istanbul ignore file */
|
||
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
|
||
|
export type UserDto = {
|
||
|
login?: string | null;
|
||
|
level?: number | null;
|
||
|
name?: string | null;
|
||
|
surname?: string | null;
|
||
|
patronymic?: string | null;
|
||
|
id?: number;
|
||
|
idCompany?: number | null;
|
||
|
idRole?: number | null;
|
||
|
password?: string | null;
|
||
|
}
|