forked from EllieBotDevs/elliebot
11 lines
266 B
C#
11 lines
266 B
C#
|
using Discord;
|
|||
|
|
|||
|
namespace Ellie.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; }
|
|||
|
}
|