Command.cs 278 B

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