btcpayserver/BTCPayServer.Client/Models/WebhookDeliveryStatus.cs

14 lines
214 B
C#
Raw Normal View History

2020-11-06 12:42:26 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer.Client.Models
{
public enum WebhookDeliveryStatus
{
Failed,
HttpError,
HttpSuccess
}
}