© 2026 Hedgehog Software, LLC
public class InfoMdoule : ... { [Command("Say")] // < what's this? [Summary("Echoes a message.")] // < what's this? public async Task Say([Remainder] [Summary("The text to echo back.")] string echo) { await ReplyAsync(echo); } }