From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- dsa/DSALib/Auxiliary/CommandInfo.cs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dsa/DSALib/Auxiliary/CommandInfo.cs (limited to 'dsa/DSALib/Auxiliary/CommandInfo.cs') 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 -- cgit v1.2.3-54-g00ecf