docs: Add XML documentation comments to API layer

Add missing XML doc comments to resolve CS1591 warnings:

  - SerilogConfiguration: Class comment

  - SwaggerConfiguration: Class and AddSwaggerDocumentation() method

  - ExceptionHandlingMiddleware: Constructor and InvokeAsync() method

  - RequestLoggingMiddleware: Placeholder class comment

  - TenantResolutionMiddleware: Placeholder class comment

  - Program: Partial class comment for integration test access

Result: 0 CS1591 warnings in DocumentOperator.API project
This commit is contained in:
2026-07-07 18:56:23 +02:00
parent 8b154e7378
commit 077eb1e017
6 changed files with 33 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
namespace DocumentOperator.API.Middleware
{
/// <summary>
/// Placeholder middleware for HTTP request/response logging.
/// </summary>
public class RequestLoggingMiddleware
{
}