mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
16 lines
301 B
C#
16 lines
301 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class DepositAddressData
|
||
|
{
|
||
|
// /**
|
||
|
// * Example: P2PKH, P2SH, P2WPKH, P2TR, BOLT11, ...
|
||
|
// */
|
||
|
// public string Type { get; set; }
|
||
|
|
||
|
/**
|
||
|
* Format depends hugely on the type.
|
||
|
*/
|
||
|
public string Address { get; set; }
|
||
|
|
||
|
}
|