Rename EmailsController to EmailController

Updated the class name from EmailsController to EmailController to follow a singular naming convention for controller classes. The namespace and constructor signature remain unchanged. This change improves consistency and readability in the codebase without introducing any functional modifications.
This commit is contained in:
2026-08-07 11:50:48 +02:00
parent c47d78112c
commit 18c5dca9f4

View File

@@ -14,7 +14,7 @@ namespace DigitalData.MessagingService.API.Controllers;
/// </summary>
[ApiController]
[Route("api/[controller]")]
public class EmailsController(IMediator mediator) : ControllerBase
public class EmailController(IMediator mediator) : ControllerBase
{
#region Send
/// <summary>