22 lines
477 B
TypeScript
22 lines
477 B
TypeScript
/**
|
|
* BeReadyBackend
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
import { GetUserStatsDto } from './get-user-stats-dto';
|
|
|
|
|
|
export interface GetUserDto {
|
|
id?: number;
|
|
firstName?: string | null;
|
|
name?: string | null;
|
|
username?: string | null;
|
|
designationName?: string | null;
|
|
getUserStatsDto?: GetUserStatsDto | null;
|
|
}
|
|
|