Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IFileSystemProviderElement.cs
T

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; }
}
}