Added Command.Synopsis for seperation of short and long descriptions, this being intended for long.

This commit is contained in:
Khionu Terabite
2016-07-30 18:09:38 -04:00
parent 15dd6016e7
commit 846a1746a2
2 changed files with 15 additions and 0 deletions

View File

@@ -11,4 +11,14 @@ namespace Discord.Commands
Text = text;
}
}
[AttributeUsage(AttributeTargets.Method)]
public class SynopsisAttribute : Attribute
{
public string Text { get; }
public SynopsisAttribute(string text)
{
Text = text;
}
}
}