示例#1
0
        public async Task <Response> ResetPasswordConfirm(UserResetPasswordDTO dto)
        {
            var result = await _service.ResetPassword(dto.Code, dto.Password);

            return(result);
        }