Files
Walleby/Wallet/IWalletStorageFactory.cs
T
2024-06-09 14:00:36 +01:00

6 lines
117 B
C#

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