mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
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);
|
|
}
|
|
}
|