mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Read about the medusa system [here](https://nadekobot.readthedocs.io/en/latest/medusa/creating-a-medusa/)
11 lines
263 B
C#
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; }
|
|
} |