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

13 lines
314 B
C#
Raw Normal View History

2024-03-23 05:42:46 +00:00
using Discord;
namespace Ellie.Canary;
/// <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; }
}