// Copyright (c) André N. Klingsheim. See License.txt in the project root for license information. using System.Collections.Generic; namespace NWebsec.Core.HttpHeaders.Configuration { public interface ICspReportUriDirectiveConfiguration { bool Enabled { get; set; } bool EnableBuiltinHandler { get; set; } IEnumerable ReportUris { get; set; } } }