Files
FluxPoseBot2/FluxPoseDiscordBot/ActionsBase.cs
2025-11-23 16:55:44 +01:00

8 lines
305 B
C#

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