Notation.Plugin.AzureKeyVault/Command/IPluginCommand.cs (8 lines of code) (raw):

using Notation.Plugin.Protocol; namespace Notation.Plugin.AzureKeyVault.Command { /// <summary> /// Interface for plugin commands. /// </summary> public interface IPluginCommand { Task<IPluginResponse> RunAsync(); } }