11 lines
288 B
C#
11 lines
288 B
C#
namespace Umbraco.Core.PropertyEditors
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for any editor configuration that supports Ignoring user start nodes
|
|
/// </summary>
|
|
internal interface IIgnoreUserStartNodesConfig
|
|
{
|
|
bool IgnoreUserStartNodes { get; set; }
|
|
}
|
|
}
|