9 lines
251 B
C#
9 lines
251 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
public interface IDeveloperSection : IUmbracoConfigurationSection
|
|
{
|
|
IEnumerable<IFileExtension> AppCodeFileExtensions { get; }
|
|
}
|
|
} |