data class RawInputs(val rawMessageContent: String, val commandName: String, val prefixCount: Int, val commandArgs: List<String> = rawMessageContent.split(" ").drop(1))
Content copied to clipboard
Data class containing the raw information from the command execution.