namespace FluxPose.DiscordBot { public abstract class ActionsBase(TContext context) where TContext : IInteractionContext { public ulong GuildId => context.Interaction.Guild?.Id ?? throw new InvalidOperationException("Action cannot be performed outside of a server."); } }