package fr.ntr;
public class ResourceBlock {
private User user;
private double bandwith;
public ResourceBlock (User user, double bandwith) {
this.user = user;
this.bandwith = bandwith;
}
public void setUser(User user) {
public void setBandwith(double bandwith) {