galaeth-draft/Galaeth.Services/Dtos/ChangePasswordDto.cs
2024-11-17 09:31:01 +00:00

18 lines
382 B
C#

namespace Galaeth.Services.Dtos;
/// <summary>
/// A change of password request.
/// </summary>
public class ChangePasswordDto : AuthRequestBaseDto
{
/// <summary>
/// The user's old password.
/// </summary>
public string OldPassword { get; set; }
/// <summary>
/// The user's new password.
/// </summary>
public string NewPassword { get; set; }
}