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