using MediatR;
namespace Features.Auth.Commands.ResendConfirmationEmail;
///
/// Resends the account confirmation email to a user, generating a fresh confirmation token.
///
/// The unique identifier of the user requesting the resend.
public record ResendConfirmationEmailCommand(Guid UserId) : IRequest;