DeukBot4/DeukBot4/MessageHandlers/Attributes/CommandHelpAttribute.cs

16 lines
359 B
C#
Raw Normal View History

2018-03-28 23:34:48 +00:00
using System;
namespace DeukBot4.MessageHandlers
{
public class CommandHelpAttribute : Attribute
{
public string ShortHelp { get; }
public string LongHelp { get; }
public CommandHelpAttribute(string shortHelp, string longHelp)
{
ShortHelp = shortHelp;
LongHelp = longHelp;
}
}
}