Files
Umbraco-CMS/src/Umbraco.Infrastructure/PropertyEditors/NestedContentConfigurationEditor.cs

16 lines
440 B
C#
Raw Normal View History

using Umbraco.Core.IO;
2018-02-05 17:48:54 +01:00
using Umbraco.Core.PropertyEditors;
2018-01-24 11:44:44 +01:00
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration editor for the nested content value editor.
/// </summary>
public class NestedContentConfigurationEditor : ConfigurationEditor<NestedContentConfiguration>
2019-12-04 14:03:39 +01:00
{
public NestedContentConfigurationEditor(IIOHelper ioHelper) : base(ioHelper)
{
}
}
}