/ src / modules / launcher / Plugins / Microsoft.Plugin.Program / Interface / IProgramArgumentParser.cs
IProgramArgumentParser.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using Wox.Plugin; 6 7 namespace Microsoft.Plugin.Program 8 { 9 public interface IProgramArgumentParser 10 { 11 bool Enabled { get; } 12 13 bool TryParse(Query query, out string program, out string programArguments); 14 } 15 }