mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
8 lines
299 B
C#
8 lines
299 B
C#
#nullable enable
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using BTCPayServer;
|
|
namespace BTCPayServer.Services.WalletFileParsing;
|
|
public interface IWalletFileParser
|
|
{
|
|
bool TryParse(BTCPayNetwork network, string data, [MaybeNullWhen(false)] out DerivationSchemeSettings derivationSchemeSettings);
|
|
}
|