summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/CommandInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Auxiliary/CommandInfo.cs')
-rw-r--r--DiscoBot/Auxiliary/CommandInfo.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/DiscoBot/Auxiliary/CommandInfo.cs b/DiscoBot/Auxiliary/CommandInfo.cs
new file mode 100644
index 0000000..b08ba1b
--- /dev/null
+++ b/DiscoBot/Auxiliary/CommandInfo.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DiscoBot.Auxiliary
+{
+ public struct CommandInfo
+ {
+ public CommandInfo(string name, string description, string scope)
+ {
+ this.Name = name;
+ this.Scope = scope;
+ this.Description = description;
+ }
+
+ public string Name { get; }
+
+ public string Scope { get; }
+
+ public string Description { get; }
+ }
+}