9 lines
160 B
C#
9 lines
160 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public interface IWalletHostCollection :
|
|
IEnumerable<IComponentHost>
|
|
{
|
|
void Add(IComponentHost host);
|
|
} |