Files
Walleby/Wallet/IWalletStoreFactory.cs
T
2024-06-29 19:39:34 +01:00

6 lines
115 B
C#

namespace Wallet;
public interface IWalletStoreFactory
{
Task<bool> Create(string name, SecurityKey key);
}