| 12345678910 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Auth.GoogleLogin;
- public sealed record Command(
- string Credential,
- string? IpAddress = null,
- string? UserAgent = null
- ) : ICommand<Result<Response>>;
|