Command.cs 241 B

12345678910
  1. using MediatR;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Auth.GoogleLogin;
  4. public sealed record Command(
  5. string Credential,
  6. string? IpAddress = null,
  7. string? UserAgent = null
  8. ) : IRequest<Result<Response>>;