mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2026-02-28 18:45:10 +01:00
7 lines
178 B
Java
7 lines
178 B
Java
package at.helpch.placeholderapi.configuration;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public record BooleanValue(@NotNull String trueValue, @NotNull String falseValue) {
|
|
}
|