using System.Collections.Generic; namespace Mhf.Cli.Argument { public class ConsoleParameter { public ConsoleParameter(string key) { Key = key; Arguments = new List(); Switches = new List(); ArgumentMap = new Dictionary(); SwitchMap = new Dictionary(); } public string Key { get; } public List Arguments { get; } public List Switches { get; } public Dictionary SwitchMap { get; } public Dictionary ArgumentMap { get; } public void Clear() { Arguments.Clear(); Switches.Clear(); ArgumentMap.Clear(); SwitchMap.Clear(); } } }