mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
18 lines
535 B
C#
18 lines
535 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Plugins.Webhooks.Views
|
|
{
|
|
public class WebhooksViewModel
|
|
{
|
|
public class WebhookViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string Url { get; set; }
|
|
public bool LastDeliverySuccessful { get; set; } = true;
|
|
public DateTimeOffset? LastDeliveryTimeStamp { get; set; } = null;
|
|
public string LastDeliveryErrorMessage { get; set; } = null;
|
|
}
|
|
public WebhookViewModel[] Webhooks { get; set; }
|
|
}
|
|
}
|