Files
Umbraco-CMS/src/Umbraco.Core/Configuration/BaseRest/IBaseRestSection.cs
T
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

14 lines
349 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration.BaseRest
{
public interface IBaseRestSection
{
IExtensionsCollection Items { get; }
/// <summary>
/// Gets a value indicating whether base rest extensions are enabled.
/// </summary>
bool Enabled { get; }
}
}