ForgeCore/NonCommands/NotCommand.cs
2020-03-10 11:47:20 -07:00

15 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.NonCommands
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class NotCommand : Attribute
{
public NotCommand()
{
// Not Command, this just marks a class
}
}
}