mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
15 lines
308 B
C#
15 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wox.Plugin.Program.Programs
|
|
{
|
|
public interface IProgram
|
|
{
|
|
List<Result> ContextMenus(IPublicAPI api);
|
|
Result Result(string query, IPublicAPI api);
|
|
}
|
|
}
|