This commit is contained in:
EmmanuelTiamzon
2025-09-05 19:30:04 +02:00
parent 1b9ad458c0
commit 2b2de507d8
3 changed files with 40 additions and 0 deletions

9
DEV.3.1/TP1/Vote.java Normal file
View File

@@ -0,0 +1,9 @@
import java.sql.*;
public class Vote {
private String pays;
public Vote(String pays) {
this.pays = pays;
}
}