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

12 lines
254 B
C#

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