7 lines
148 B
C#
7 lines
148 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IComponentHostCollection :
|
|
IEnumerable<IComponentHost>
|
|
{
|
|
void Add(IComponentHost host);
|
|
} |