diff --git a/uml-poo/Module.java b/uml-poo/Module.java new file mode 100644 index 0000000..109247e --- /dev/null +++ b/uml-poo/Module.java @@ -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; + } +}