Add Module.java

This commit is contained in:
flyingscorpio@arch-desktop 2021-09-20 14:45:20 +02:00
parent 2102b0c062
commit ba50ed79d6

15
uml-poo/Module.java Normal file
View file

@ -0,0 +1,15 @@
public class Module {
private int idModule;
private String nom;
public int coef;
public Date dateCreation;
public Module(int idModule, String nom) {
}
public void setCoef(int coef) {
this.coef = coef;
}
public int getCoef() {
return this.coef;
}
}