GreenAppleLogin/gal-api/src/main/java/net/limework/gal/utils/config/AntiBot.java

19 lines
360 B
Java
Raw Normal View History

package net.limework.gal.utils.config;
import java.util.concurrent.TimeUnit;
public record AntiBot(int maxConnections, long reset, TimeUnit resetUnit) {
public int getMaxConnections() {
return maxConnections;
}
public long getReset() {
return reset;
}
public TimeUnit getResetUnit() {
return resetUnit;
}
}