add utilisateur

This commit is contained in:
tuanvu
2025-09-17 14:07:07 +02:00
parent 9e4f4692e0
commit 3ebbaaa983
4 changed files with 18 additions and 6 deletions

View File

@@ -4,9 +4,9 @@ import jakarta.persistence.Id;
public abstract class Reponse {
@Id
int id;
String value;
Boolean correct;
private int id;
private String value;
private Boolean correct;
public Reponse(){
}