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 lineThe line the player wants to change
* @param textThe new text the player provided for the line
*/ public record SignLineChangeRequest(@NotNull Player player, int line, @NotNull String text) { }