Files
nadekobot/src/Nadeko.Medusa/Context/DmContext.cs
2022-04-16 12:44:46 +00:00

11 lines
263 B
C#

using Discord;
namespace Nadeko.Snake;
/// <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; }
}