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

17 lines
310 B
C#

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