mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-06 15:44:26 +01:00
* Refactor and decouple Payout logic So that we can support lightning and more complex flows like allowing external payments to payouts. * fix dropdown align * switch to simpler buttons * rebase fixes add some comments * rebase fixes add some comments * simplify enum caveman logic * reduce code duplication and db round trips * Fix pull payment date format * fix issue with payouts to send page not working correctly * try fix some style issue * fix bip21parse
13 lines
186 B
C#
13 lines
186 B
C#
namespace BTCPayServer.Data
|
|
{
|
|
public interface IClaimDestination
|
|
{
|
|
}
|
|
|
|
public interface IPayoutProof
|
|
{
|
|
string Link { get; }
|
|
string Id { get; }
|
|
}
|
|
}
|