elliebot/src/Ellie.Marmalade/Context/GuildContext.cs

12 lines
317 B
C#

using Discord;
namespace Ellie.Marmalade;
/// <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; }
}