btcpayserver/BTCPayServer/Models/StoreViewModels/WebhooksViewModel.cs
2020-11-08 15:57:24 +09:00

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; }
}
}