package net.knarcraft.placeholdersigns.container; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; /** * A record of a player's request to change a sign * * @param player

The player requesting the sign change

* @param line

The line the player wants to change

* @param text

The new text the player provided for the line

*/ public record SignLineChangeRequest(@NotNull Player player, int line, @NotNull String text) { }