Files
Walleby/Wallet/IWalletFactory.cs
T
2024-06-29 11:23:44 +01:00

9 lines
142 B
C#

using Toolkit.Foundation;
namespace Wallet
{
public interface IWalletFactory
{
IComponentHost? Create(string key);
}
}