Files
Toolkit2/Toolkit.Foundation/IComponentHostCollection.cs
T
2024-04-13 11:29:32 +01:00

7 lines
148 B
C#

namespace Toolkit.Foundation;
public interface IComponentHostCollection :
IEnumerable<IComponentHost>
{
void Add(IComponentHost host);
}