namespace DocumentService.API.Configuration;
///
/// Configuration settings for Swagger/OpenAPI documentation.
///
public class SwaggerSettings
{
///
///
///
public const string SectionName = "SwaggerSettings";
///
/// Enable Swagger UI in Production environment.
/// Default: true (allows production testing/debugging).
///
public bool EnableInProduction { get; set; } = true;
///
/// API title displayed in Swagger UI.
///
public string Title { get; set; } = "DocumentService API";
///
/// API version.
///
public string Version { get; set; } = "v1";
///
/// API description displayed in Swagger UI.
///
public string Description { get; set; } = "PDF document processing service";
}