using MediatR; using SharedKernel.Results; namespace Application.Features.Api.Auth.GoogleLogin; public sealed record Command( string Credential, string? IpAddress = null, string? UserAgent = null ) : IRequest<Result<Response>>;