2020-08-12 11:46:11 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
2020-07-17 22:32:21 -07:00
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.Plugin.Program.Programs
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IShellLinkHelper
|
|
|
|
|
|
{
|
|
|
|
|
|
string RetrieveTargetPath(string path);
|
2020-08-12 11:46:11 -07:00
|
|
|
|
|
2020-08-14 12:46:23 -07:00
|
|
|
|
string Description { get; set; }
|
2020-08-12 11:46:11 -07:00
|
|
|
|
|
2020-07-17 22:32:21 -07:00
|
|
|
|
string Arguments { get; set; }
|
2020-08-12 11:46:11 -07:00
|
|
|
|
|
2020-08-14 12:46:23 -07:00
|
|
|
|
bool HasArguments { get; set; }
|
2020-07-17 22:32:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|