Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/GridConfiguration.cs

20 lines
766 B
C#

using Newtonsoft.Json.Linq;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the configuration for the gid value editor.
/// </summary>
public class GridConfiguration
{
//fixme: Make these strongly typed, for now this works though
[ConfigurationField("items", "Grid", "views/propertyeditors/grid/grid.prevalues.html", Description = "Grid configuration")]
public JObject Items { get; set; }
//fixme: Make these strongly typed, for now this works though
[ConfigurationField("rte", "Rich text editor", "views/propertyeditors/rte/rte.prevalues.html", Description = "Rich text editor configuration")]
public JObject Rte { get; set; }
}
}