mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
13 lines
367 B
C#
13 lines
367 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; }
|
|
}
|
|
}
|