summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Auxiliary/CommandInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/DSALib/Auxiliary/CommandInfo.cs')
-rw-r--r--dsa/DSALib/Auxiliary/CommandInfo.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/dsa/DSALib/Auxiliary/CommandInfo.cs b/dsa/DSALib/Auxiliary/CommandInfo.cs
new file mode 100644
index 0000000..d8e2188
--- /dev/null
+++ b/dsa/DSALib/Auxiliary/CommandInfo.cs
@@ -0,0 +1,28 @@
+using System.Linq;
+
+namespace DSALib.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