Files
2024-03-13 00:33:46 +01:00

12 lines
262 B
C#

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