Add ability to send test webhook call

This commit is contained in:
Umar Bolatov
2021-04-18 17:53:57 -07:00
parent a830c1e812
commit 2262acf12b
5 changed files with 119 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
using BTCPayServer.Client.Models;
namespace BTCPayServer.Models.StoreViewModels
{
public class TestWebhookViewModel
{
public WebhookEventType Type { get; set; }
}
}