Files
Umbraco-CMS/src/Umbraco.Core/Components/IUmbracoComponent.cs
2016-09-19 16:33:39 +02:00

12 lines
189 B
C#

using LightInject;
namespace Umbraco.Core.Components
{
public interface IUmbracoComponent
{
void Compose(ServiceContainer container);
void Terminate();
}
}