Files
Walleby/Wallet/IWalletConnectionFactory.cs
T
TheXamlGuy bc5023c8ac Bug fixes
2024-07-05 21:57:01 +01:00

8 lines
147 B
C#

namespace Wallet
{
public interface IWalletConnectionFactory
{
Task<WalletConnection?> Create(string name, string key);
}
}