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

8 lines
128 B
C#

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