Files
BUT2/DEV/DEV3.1/TP01/Exercise1/Vote.java

19 lines
321 B
Java
Raw Normal View History

2025-09-26 13:21:58 +02:00
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;
}
}