mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
12 lines
333 B
C#
12 lines
333 B
C#
namespace BTCPayApp.CommonServer;
|
|
|
|
public class PairSuccessResult
|
|
{
|
|
public string? Key { get; set; }
|
|
public string? StoreId { get; set; }
|
|
public string? UserId { get; set; }
|
|
|
|
public string? ExistingWallet { get; set; }
|
|
public string? ExistingWalletSeed { get; set; }
|
|
public string? Network { get; set; }
|
|
}
|