IShellLinkHelper.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 namespace Wox.Infrastructure 6 { 7 public interface IShellLinkHelper 8 { 9 string RetrieveTargetPath(string path); 10 11 string Description { get; set; } 12 13 string Arguments { get; set; } 14 15 bool HasArguments { get; set; } 16 } 17 }