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