Changement d'interface graphique

This commit is contained in:
2025-12-31 11:44:04 +01:00
commit 9501053984
85 changed files with 7097 additions and 0 deletions
@@ -0,0 +1,15 @@
package com.example.boidelov3;
import java.util.List;
public class Questions {
private String version;
private List<Question> questions;
// Getters et setters pour chaque champ
public List<Question> getQuestions() {
return questions;
}
// autres getters et setters...
}