kreta/Kreta.WebApi/Naplo/Kreta.Naplo.Configuration/ICorsConfiguration.cs
2024-03-13 00:33:46 +01:00

11 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; }
}
}