mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Add Webhooks in store's settings
This commit is contained in:
17
BTCPayServer/Models/StoreViewModels/WebhooksViewModel.cs
Normal file
17
BTCPayServer/Models/StoreViewModels/WebhooksViewModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BTCPayServer.Models.StoreViewModels
|
||||
{
|
||||
public class WebhooksViewModel
|
||||
{
|
||||
public class WebhookViewModel
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Url { get; set; }
|
||||
}
|
||||
public WebhookViewModel[] Webhooks { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user