7 lines
146 B
C#
7 lines
146 B
C#
namespace Wallet
|
|
{
|
|
public interface IWalletConnectionFactory
|
|
{
|
|
Task<WalletConnection?> Create(string name, string key);
|
|
}
|
|
} |