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

9 lines
143 B
C#

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