elliebot/src/Ellie.Marmalade/Context/DmContext.cs
2024-05-12 23:43:23 +12:00

11 lines
No EOL
269 B
C#

using Discord;
namespace EllieBot.Marmalade;
/// <summary>
/// Commands which take this type as the first parameter can only be executed in DMs
/// </summary>
public abstract class DmContext : AnyContext
{
public abstract override IDMChannel Channel { get; }
}