using System.Collections.Generic;
namespace Abp.Web.Configuration
{
public interface IWebEmbeddedResourcesConfiguration
{
///
/// List of file extensions (without dot) to ignore for embedded resources.
/// Default extensions: cshtml, config.
///
HashSet IgnoredFileExtensions { get; }
}
}