mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
315 B
C#
12 lines
315 B
C#
using Discord;
|
|
|
|
namespace NadekoBot.Medusa;
|
|
|
|
/// <summary>
|
|
/// Commands which take this type as a first parameter can only be executed in a server
|
|
/// </summary>
|
|
public abstract class GuildContext : AnyContext
|
|
{
|
|
public abstract override ITextChannel Channel { get; }
|
|
public abstract IGuild Guild { get; }
|
|
} |