profile dto added

This commit is contained in:
sdraris 2025-09-22 10:53:11 +02:00
parent 99e742f840
commit 641d0926e9

View File

@ -12,10 +12,10 @@ export class ProfileResponseDto {
role: RoleType;
@ApiProperty()
prenom: string;
prenom?: string;
@ApiProperty()
nom: string;
nom?: string;
@ApiProperty({ enum: StatutUtilisateurType })
statut: StatutUtilisateurType;