discord-bot/CompatBot/Commands/Attributes/TriggersTyping.cs
2019-01-08 19:25:39 +05:00

16 lines
411 B
C#

using System;
using DSharpPlus.CommandsNext;
namespace CompatBot.Commands.Attributes
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = false)]
internal class TriggersTyping: Attribute
{
public bool InDmOnly { get; set; }
public bool ExecuteCheck(CommandContext ctx)
{
return !InDmOnly || ctx.Channel.IsPrivate;
}
}
}