Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using GerstITS.Web.Api.Swagger;
|
||||
using Microsoft.OpenApi.Models;
|
||||
|
||||
namespace GerstITS.Examples.Api.Swagger
|
||||
{
|
||||
internal sealed class SwaggerSecurityConfiguration : IOpenApiSecuritySchemeConfiguration
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public bool AllowAnonymous { get; set; }
|
||||
public string HttpHeaderKey { get; set; }
|
||||
public string Scheme { get; set; }
|
||||
public SecuritySchemeType SchemeType { get; set; }
|
||||
public ParameterLocation ParameterLocation { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user