mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
* Added tests to verify that the name is always set as the title and never the description * removed AppType as an argument * refactored code * added comments * localized strings * removed empty constructor * made setsubtitle private * removed the mock Win32 class used for unit testing * removed the UWP tests
16 lines
410 B
C#
16 lines
410 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 Description { get; set; }
|
|
string Location { get; }
|
|
}
|
|
}
|