11 lines
263 B
C#
11 lines
263 B
C#
namespace WorkFlow.API.Models
|
|
{
|
|
public class APIKeyAuthOptions
|
|
{
|
|
public required string Key { get; init; }
|
|
|
|
public string HeaderName { get; init; } = "X-API-Key";
|
|
|
|
public string? SwaggerDescription { get; init; } = null;
|
|
}
|
|
} |