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

14 lines
214 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer.Client.Models
{
public enum WebhookDeliveryStatus
{
Failed,
HttpError,
HttpSuccess
}
}