Files
nadekobot/src/Nadeko.Medusa/Context/DmContext.cs
2024-04-27 22:45:14 +00:00

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; }
}