Files
Umbraco-CMS/src/Umbraco.Core/Configuration/UmbracoSettings/IDeveloperSection.cs
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

9 lines
251 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IDeveloperSection : IUmbracoConfigurationSection
{
IEnumerable<IFileExtension> AppCodeFileExtensions { get; }
}
}