17 lines
302 B
C#
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; }
|
|
}
|
|
} |