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