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

17 lines
318 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; }
}
}