Files
nadekobot/src/Nadeko.Medusa/Context/GuildContext.cs
2022-04-16 12:44:46 +00:00

12 lines
311 B
C#

using Discord;
namespace Nadeko.Snake;
/// <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; }
}