9 lines
191 B
C#
9 lines
191 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
{
|
|
public interface IGridEditorsConfig
|
|
{
|
|
IEnumerable<IGridEditorConfig> Editors { get; }
|
|
}
|
|
} |