summaryrefslogtreecommitdiff
path: root/DSACore/Auxiliary/CommandInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Auxiliary/CommandInfo.cs')
-rw-r--r--DSACore/Auxiliary/CommandInfo.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/DSACore/Auxiliary/CommandInfo.cs b/DSACore/Auxiliary/CommandInfo.cs
deleted file mode 100644
index 1472587..0000000
--- a/DSACore/Auxiliary/CommandInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Linq;
-
-namespace DSACore.Auxiliary
-{
- public struct CommandInfo
- {
- public CommandInfo(string name, string brief, string[] description, string scope)
- {
- Name = name;
- Scope = scope;
- Brief = brief;
- Description = description;
- }
-
- public string Name { get; }
-
- public string Scope { get; }
-
- public string Brief { get; }
-
- public string[] Description { get; }
-
- public string GetDescription()
- {
- return Description.Aggregate((s, c) => s + c);
- }
- }
-} \ No newline at end of file