11 lines
246 B
C#
11 lines
246 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
|
|
public interface IRepositoriesSection : IUmbracoConfigurationSection
|
|
{
|
|
IEnumerable<IRepository> Repositories { get; }
|
|
}
|
|
}
|