This commit is contained in:
Tr1xt4n 2023-03-03 10:54:11 +01:00
parent 5154f8f399
commit 9552b52697

View File

@ -1,4 +1,11 @@
package fr.ntr; package fr.ntr;
public class ResourceBlock { public class ResourceBlock {
private User user;
private double bandwith;
private ResourceBlock (User user, double bandwith) {
this.user = user;
this.bandwith = bandwith;
}
} }