12 lines
189 B
C#
12 lines
189 B
C#
using LightInject;
|
|
|
|
namespace Umbraco.Core.Components
|
|
{
|
|
public interface IUmbracoComponent
|
|
{
|
|
void Compose(ServiceContainer container);
|
|
|
|
void Terminate();
|
|
}
|
|
}
|