Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Grid/IGridEditorConfig.cs
T
Søren Kottal 56f33e1006 Adds nametemplates for grid editors (#6634)
* Adds nametemplates for grid editors
2019-10-25 12:35:15 +02:00

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; }
}
}