2017-09-15 18:22:19 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IFileSystemProviderElement
|
|
|
|
|
|
{
|
|
|
|
|
|
string Alias { get; }
|
|
|
|
|
|
string Type { get; }
|
|
|
|
|
|
IDictionary<string, string> Parameters { get; }
|
|
|
|
|
|
}
|
2017-09-23 10:08:18 +02:00
|
|
|
|
}
|