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
10 lines
206 B
C#
10 lines
206 B
C#
namespace DocumentOperator.API.Middleware
|
|
{
|
|
/// <summary>
|
|
/// Placeholder middleware for HTTP request/response logging.
|
|
/// </summary>
|
|
public class RequestLoggingMiddleware
|
|
{
|
|
}
|
|
}
|