using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Payments
{
///
/// The different ways to pay an invoice
///
public enum PaymentTypes
{
///
/// On-Chain UTXO based, bitcoin compatible
///
BTCLike,
///
/// Lightning payment
///
LightningLike
}
}