11 lines
262 B
C#
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; }
|
|
}
|
|
}
|