some changes

This commit is contained in:
2025-10-02 10:48:05 +02:00
parent 8b6d447574
commit 6ceeffac0e
14 changed files with 342 additions and 48 deletions

View File

@@ -0,0 +1,18 @@
public class Champ {
private String code;
private String[] modules;
public Champ(String code, String[] modules) {
this.code = code;
this.modules = modules;
}
public String getCode() {
return this.code;
}
public String[] getModules() {
return this.modules;
}
}