12 lines
212 B
C#
12 lines
212 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IPluginHookFilter
|
|
{
|
|
public string Hook { get; }
|
|
|
|
Task<object> Execute(object args);
|
|
}
|
|
}
|