mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
10 lines
171 B
C#
10 lines
171 B
C#
|
using NBitcoin;
|
||
|
|
||
|
namespace BTCPayServer.Data
|
||
|
{
|
||
|
public interface IBitcoinLikeClaimDestination : IClaimDestination
|
||
|
{
|
||
|
BitcoinAddress Address { get; }
|
||
|
}
|
||
|
}
|