Files
BeReadyFrontend/src/app/services/api/model/get-user-details-dto.ts
T
2026-04-26 17:19:44 +01:00

25 lines
569 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 GetUserDetailsDto {
id?: number;
firstName?: string | null;
name?: string | null;
username?: string | null;
email?: string | null;
designationId?: number | null;
designationName?: string | null;
creationDate?: string;
getUserStatsDto?: GetUserStatsDto | null;
}