btcpayserver/BTCPayApp.CommonServer/PairSuccessResult.cs
2024-07-11 15:57:04 +02:00

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; }
}
}