9 lines
145 B
C#
9 lines
145 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Bitvault
|
|
{
|
|
public interface IWalletFactory
|
|
{
|
|
IComponentHost? Create(string name);
|
|
}
|
|
} |