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