8 lines
166 B
Java
8 lines
166 B
Java
package stirling.software.SPDF.config.interfaces;
|
|
|
|
public interface ShowAdminInterface {
|
|
default boolean getShowUpdateOnlyAdmins() {
|
|
return true;
|
|
}
|
|
}
|