using Features.Auth.Dtos; using MediatR; namespace Features.Auth.Queries.Login; /// /// Authenticates a user using their username and password and issues new tokens. Bound directly /// from the request body of POST /api/auth/login. /// public record LoginQuery(string Username, string Password) : IRequest;