using Discord.WebSocket; namespace MinecraftDiscordBot; public interface IUserRoleManager { /// /// Verifies that a user is a bot administrator. /// /// User ID. /// An optional message to throw when user is not authorized. /// User is not authorized. void RequireAdministrator(ulong user, string? message = null); }