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

12 lines
233 B
Java
Raw Normal View History

2023-03-03 10:38:35 +01:00
package fr.ntr;
public class ResourceBlock {
2023-03-10 09:27:53 +01:00
private UserGroup user;
2023-03-03 10:54:11 +01:00
private double bandwith;
2023-03-10 09:27:53 +01:00
public ResourceBlock (UserGroup user, double bandwith) {
2023-03-03 10:54:11 +01:00
this.user = user;
this.bandwith = bandwith;
}
2023-03-03 10:38:35 +01:00
}