15 lines
229 B
C#
15 lines
229 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
{
|
|
public interface IGridConfig
|
|
{
|
|
|
|
IGridEditorsConfig EditorsConfig { get; }
|
|
|
|
}
|
|
}
|