From 8b2cd65526f7535ab43266653bd1146add8bd880 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Thu, 7 Jun 2018 02:35:19 +0200 Subject: Added generic Help system added EasyCompare as static method --- DiscoBot/Auxiliary/CommandInfo.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 DiscoBot/Auxiliary/CommandInfo.cs (limited to 'DiscoBot/Auxiliary/CommandInfo.cs') 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; } + } +} -- cgit v1.2.3-54-g00ecf