Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Grid/IGridEditorsConfig.cs
2020-02-24 08:21:53 +01:00

10 lines
192 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration.Grid
{
public interface IGridEditorsConfig
{
IEnumerable<IGridEditorConfig> Editors { get; }
}
}