using MediatR; namespace ColaFlow.Modules.Identity.Application.Commands.SendVerificationEmail; public sealed record SendVerificationEmailCommand( Guid UserId, string Email, string BaseUrl ) : IRequest;