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