56f33e1006
* Adds nametemplates for grid editors
17 lines
400 B
C#
17 lines
400 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
{
|
|
public interface IGridEditorConfig
|
|
{
|
|
string Name { get; }
|
|
string NameTemplate { get; }
|
|
string Alias { get; }
|
|
string View { get; }
|
|
string Render { get; }
|
|
string Icon { get; }
|
|
IDictionary<string, object> Config { get; }
|
|
}
|
|
}
|