Files
btcpayserver/BTCPayServer.Client/Models/WebhookEventType.cs
2020-11-23 18:28:35 +09:00

17 lines
308 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer.Client.Models
{
public enum WebhookEventType
{
InvoiceCreated,
InvoiceReceivedPayment,
InvoiceProcessing,
InvoiceExpired,
InvoiceSettled,
InvoiceInvalid
}
}