TODO : merge

This commit is contained in:
trochas
2025-09-19 09:47:10 +02:00
parent 78603b2d26
commit aabaed6755
13 changed files with 125 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ public class Choix extends Reponse{
@Id
@GeneratedValue
int id;
private int id;
ArrayList<String> choix;
@@ -17,6 +17,14 @@ public class Choix extends Reponse{
super();
}
public void setId(int id){
this.id=id;
}
public int getId(){
return this.id;
}