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

12 lines
254 B
C#
Raw Normal View History

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
}