mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
[stylecop] program plugin/unit test first pass (#5908)
* initial pass * multiple whitespace fixes
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
// Copyright (c) Microsoft Corporation
|
||||
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Wox.Plugin;
|
||||
|
||||
namespace Microsoft.Plugin.Program.Programs
|
||||
@@ -6,10 +10,15 @@ 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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user