|
- using System;
- using System.Threading.Tasks;
-
- namespace Discord.Commands
- {
- [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
- public abstract class PreconditionAttribute : Attribute
- {
- /// <summary>
- /// Specify a group that this precondition belongs to. Preconditions of the same group require only one
- /// of the preconditions to pass in order to be successful (A || B). Specifying <see cref="Group"/> = <see cref="null"/>
- /// or not at all will require *all* preconditions to pass, just like normal (A && B).
- /// </summary>
- public string Group { get; set; } = null;
-
- public abstract Task<PreconditionResult> CheckPermissions(ICommandContext context, CommandInfo command, IServiceProvider services);
- }
- }
|