This repository has been archived on 2023-08-28. You can view files and clone it, but cannot push or open issues or pull requests.
ntr-interferences/src/main/java/fr/ntr/ResourceBlock.java
2023-03-10 11:38:52 +01:00

20 lines
381 B
Java

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) {
this.user = user;
}
public void setBandwith(double bandwith) {
this.bandwith = bandwith;
}
}