19 lines
584 B
C#
19 lines
584 B
C#
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
|
|
}
|
|
} |