namespace WorkFlow.API.Models { public class APIKeyAuthOptions { public string? Key { get; init; } = null; public string HeaderName { get; init; } = "X-API-Key"; public string? SwaggerDescription { get; init; } = null; } }