6 lines
117 B
C#
6 lines
117 B
C#
namespace Wallet;
|
|
|
|
public interface IWalletStorageFactory
|
|
{
|
|
Task<bool> Create(string name, SecurityKey key);
|
|
} |