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