PowerToys/Wox/CommandArgs/ICommandArg.cs
2015-10-30 23:23:01 +00:00

11 lines
180 B
C#

using System.Collections.Generic;
namespace Wox.CommandArgs
{
interface ICommandArg
{
string Command { get; }
void Execute(IList<string> args);
}
}