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 Vote {
private String voter;
private int points;
public Vote(String voter, int points) {
this.voter = voter;
this.points = points;
}
public String getVoterName() {
return this.voter;
}
public int getPoints() {
return this.points;
}
}