10 lines
215 B
C#
10 lines
215 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Configuration
|
|
{
|
|
public interface IFileSystemProvidersSection
|
|
{
|
|
IDictionary<string, IFileSystemProviderElement> Providers { get; }
|
|
}
|
|
}
|