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,25 @@
/**
* 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 { GetMessageDto } from './get-message-dto';
import { GetUserGroupDto } from './get-user-group-dto';
export interface GetGroupDetailsDto {
id?: number;
label?: string | null;
isFinished?: boolean;
title?: string | null;
description?: string | null;
duration?: number;
creationDate?: string;
messages?: Array<GetMessageDto> | null;
users?: Array<GetUserGroupDto> | null;
}