Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/IParameterEditor.cs
2017-03-05 11:59:11 +01:00

25 lines
673 B
C#

using System.Collections.Generic;
using Umbraco.Core.Plugins;
namespace Umbraco.Core.PropertyEditors
{
public interface IParameterEditor : IDiscoverable
{
/// <summary>
/// The id of the property editor
/// </summary>
string Alias { get; }
/// <summary>
/// The name of the property editor
/// </summary>
string Name { get; }
/// <summary>
/// Allows a parameter editor to be re-used based on the configuration specified.
/// </summary>
IDictionary<string, object> Configuration { get; }
IValueEditor ValueEditor { get; }
}
}