summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/CommandInfo.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-11 18:28:13 +0200
committerTrueDoctor <d-kobert@web.de>2018-06-11 18:28:13 +0200
commitaf937e7a8519ea3b06be651eb21b54132295c510 (patch)
tree17dbc28a5e9a75a1a42813a233b1c41390e673c4 /DiscoBot/Auxiliary/CommandInfo.cs
parentad4cb92819976b8add36f047e59335104aa171fe (diff)
parentff80592d541c79653ef0a7c04e0938d7249069ef (diff)
Merge branch 'master' of https://github.com/TrueDoctor/DiscoBot
Diffstat (limited to 'DiscoBot/Auxiliary/CommandInfo.cs')
-rw-r--r--DiscoBot/Auxiliary/CommandInfo.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/DiscoBot/Auxiliary/CommandInfo.cs b/DiscoBot/Auxiliary/CommandInfo.cs
index 90fbbc7..dfed417 100644
--- a/DiscoBot/Auxiliary/CommandInfo.cs
+++ b/DiscoBot/Auxiliary/CommandInfo.cs
@@ -8,10 +8,11 @@ namespace DiscoBot.Auxiliary
{
public struct CommandInfo
{
- public CommandInfo(string name, string[] description, string scope)
+ public CommandInfo(string name, string brief, string[] description, string scope)
{
this.Name = name;
this.Scope = scope;
+ this.Brief = brief;
this.Description = description;
}
@@ -19,6 +20,8 @@ namespace DiscoBot.Auxiliary
public string Scope { get; }
+ public string Brief { get; }
+
public string[] Description { get; }
public string GetDescription()