PowerToys/Wox/CommandArgs/ToggleCommandArg.cs
2016-02-18 19:32:48 +08:00

19 lines
358 B
C#

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