using MediatR; namespace Shared.Application.Emails; /// /// Cross-slice command sent by Features.Auth and handled by Features.Emails to dispatch a /// registration confirmation email, without either slice taking a project reference on the other. /// public record SendRegistrationEmailCommand( string FirstName, string Email, string ConfirmationToken ) : IRequest;