14 lines
349 B
C#
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; }
|
|
}
|
|
} |