using Newtonsoft.Json;
namespace Umbraco.Core.PropertyEditors
{
///
/// Represents the value editor for the parameter editor during macro parameter editing
///
public class ParameterValueEditor : IValueEditor
{
///
/// default ctor
///
public ParameterValueEditor()
{
}
///
/// Creates a new editor with the specified view
///
///
public ParameterValueEditor(string view)
: this()
{
View = view;
}
public string View { get; set; }
}
}