Added openapi generator

This commit is contained in:
2026-03-12 17:44:24 +01:00
parent 2c0381964c
commit 3ea7d5e68a
62 changed files with 5915 additions and 51 deletions
@@ -0,0 +1,23 @@
/**
* 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;
creationDate?: string;
getUserStatsDto?: GetUserStatsDto | null;
}