mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
11 lines
267 B
C#
11 lines
267 B
C#
using Discord;
|
|
|
|
namespace NadekoBot.Medusa;
|
|
|
|
/// <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; }
|
|
} |