Tanguy Herbron 4c1e6530b3 Ajout du programme note en POO
- Code fonctionnel
- Tests unitaires
2018-11-30 17:32:32 +01:00

14 lines
178 B
Java

package material;
import entity.Empruntable;
public class UC extends Empruntable {
public UC() {}
public UC(boolean defectueux) {
super(defectueux);
}
}