using System.Collections.Generic; namespace Wox.CommandArgs { public class ToggleCommandArg:ICommandArg { public string Command { get { return "toggle"; } } public void Execute(IList args) { App.Window.ToggleWox(); } } }