mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
16 lines
338 B
C#
16 lines
338 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.Plugin.Program.Programs
|
|||
|
|
{
|
|||
|
|
public interface IShellLinkHelper
|
|||
|
|
{
|
|||
|
|
string RetrieveTargetPath(string path);
|
|||
|
|
string description { get; set; }
|
|||
|
|
string Arguments { get; set; }
|
|||
|
|
bool hasArguments { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|