clean structure

This commit is contained in:
2026-02-10 18:05:13 +01:00
parent 5f2d805875
commit 4b4a0a3597
33 changed files with 0 additions and 0 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;
}
}