mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 15:27:55 +08:00
15 lines
369 B
C#
15 lines
369 B
C#
using System.Collections.Generic;
|
|
using Wox.Plugin;
|
|
|
|
namespace Microsoft.Plugin.Program.Programs
|
|
{
|
|
public interface IProgram
|
|
{
|
|
List<ContextMenuResult> ContextMenus(IPublicAPI api);
|
|
Result Result(string query, IPublicAPI api);
|
|
string UniqueIdentifier { get; set; }
|
|
string Name { get; }
|
|
string Location { get; }
|
|
}
|
|
}
|