namespace Kreta.Naplo.Configuration { public interface ICorsConfiguration { bool IsEnabled { get; } string Urls { get; } string Headers { get; } string Methods { get; } bool SupportsCredentials { get; } } }