Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/MarkdownConfigurationEditor.cs
T
2018-01-24 11:44:44 +01:00

10 lines
292 B
C#

using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration editorfor the markdown value editor.
/// </summary>
internal class MarkdownConfigurationEditor : ConfigurationEditor<MarkdownConfiguration>
{ }
}