Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/ParameterValueEditor.cs
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

29 lines
730 B
C#

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