astral-api/Astral.Services/Dtos/AuthenticateUserDto.cs

22 lines
513 B
C#
Raw Normal View History

2024-12-11 21:36:30 +01:00
// <copyright file="AuthenticateUserDto.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
namespace Astral.Services.Dtos;
/// <summary>
/// Authentication (login) request dto.
/// </summary>
public class AuthenticateUserDto
{
/// <summary>
/// Agent's username.
/// </summary>
public string Username { get; set; }
/// <summary>
/// Agent's password.
/// </summary>
public string Password { get; set; }
}