mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
18 lines
397 B
C#
18 lines
397 B
C#
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; }
|
|
}
|
|
}
|