Command.cs 252 B

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