Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IFileSystemProvidersSection.cs
2017-09-23 10:08:18 +02:00

10 lines
215 B
C#

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