using MediatR; using SharedKernel.Results; namespace Application.Features.Api.Auth.Login; public sealed record Command( string Email, string Password, string? IpAddress = null, string? UserAgent = null ) : IRequest>;