mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 20:04:18 +01:00
23 lines
471 B
C#
23 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Payments
|
|
{
|
|
/// <summary>
|
|
/// The different ways to pay an invoice
|
|
/// </summary>
|
|
public enum PaymentTypes
|
|
{
|
|
/// <summary>
|
|
/// On-Chain UTXO based, bitcoin compatible
|
|
/// </summary>
|
|
BTCLike,
|
|
/// <summary>
|
|
/// Lightning payment
|
|
/// </summary>
|
|
LightningLike
|
|
}
|
|
}
|