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