This commit is contained in:
2025-09-26 13:21:58 +02:00
parent 7c72e94d8d
commit e35f36db4b
4 changed files with 65 additions and 28 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;
}
}