15 lines
362 B
C#
15 lines
362 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
{
|
|
public interface IGridEditorConfig
|
|
{
|
|
string Name { get; }
|
|
string Alias { get; }
|
|
string View { get; }
|
|
string Render { get; }
|
|
string Icon { get; }
|
|
IDictionary<string, object> Config { get; }
|
|
}
|
|
} |