//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
using Astral.Core.Constants;
namespace Astral.Services.Dtos;
///
/// Authentication (login) request dto.
///
public class PasswordAuthenticateDto : BaseAuthenticationDto
{
///
/// Agent's username.
///
public string Username { get; set; }
///
/// Agent's password.
///
public string Password { get; set; }
///
/// The scope for the token.
///
public TokenScope Scope { get; set; }
}