This commit is contained in:
trochas
2025-09-17 14:36:54 +02:00
parent 3ebbaaa983
commit 67b96ff9e4
15 changed files with 63 additions and 24 deletions

View File

@@ -1,7 +1,23 @@
package metier;
import java.util.ArrayList;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
public class Choix extends Reponse{
public Choix() {}
@Id
@GeneratedValue
int id;
ArrayList<String> choix;
public Choix() {
super();
}
}