mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
19 lines
358 B
C#
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();
|
|
}
|
|
}
|
|
}
|