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