btcpayserver/BTCPayServer/Services/WalletFileParsing/IWalletFileParser.cs
2024-01-23 21:33:45 +09:00

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