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