using Features.Auth.Dtos;
using MediatR;
namespace Features.Auth.Commands.ConfirmUser;
///
/// Validates a confirmation token and confirms the corresponding user account.
///
/// The confirmation token issued to the user, typically delivered via email.
public record ConfirmUserCommand(string Token) : IRequest;