8 lines
305 B
C#
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.");
|
|
}
|
|
}
|