//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
namespace Astral.Services.Dtos;
///
/// Authentication (login) request dto.
///
public class AuthenticateUserDto
{
///
/// Agent's username.
///
public string Username { get; set; }
///
/// Agent's password.
///
public string Password { get; set; }
}