Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IFileSystemProviderElement.cs
T
2018-11-22 14:05:51 +00:00

11 lines
253 B
C#

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