Command.cs 268 B

12345678910
  1. using Application.Abstractions.Messaging;
  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. ) : ICommand<Result<Response>>;