8 lines
128 B
C#
8 lines
128 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public interface IWalletHostFactory
|
|
{
|
|
IComponentHost? Create(string key);
|
|
} |