Files
PlaceholderAPI/src/main/java/at/helpch/placeholderapi/configuration/BooleanValue.java
2026-01-19 20:39:13 +08:00

7 lines
178 B
Java

package at.helpch.placeholderapi.configuration;
import org.jetbrains.annotations.NotNull;
public record BooleanValue(@NotNull String trueValue, @NotNull String falseValue) {
}