9 lines
142 B
C#
9 lines
142 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet
|
|
{
|
|
public interface IWalletFactory
|
|
{
|
|
IComponentHost? Create(string key);
|
|
}
|
|
} |