Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IFileSystemProvidersSection.cs

9 lines
214 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration
{
public interface IFileSystemProvidersSection
{
IDictionary<string, IFileSystemProviderElement> Providers { get; }
}
}