Files
Umbraco-CMS/src/Umbraco.Core/Configuration/BaseRest/IMethodSection.cs

17 lines
302 B
C#

namespace Umbraco.Core.Configuration.BaseRest
{
public interface IMethodSection
{
string Name { get; }
bool AllowAll { get; }
string AllowGroup { get; }
string AllowType { get; }
string AllowMember { get; }
bool ReturnXml { get; }
}
}