Exemple #1
0
        public async Task <ApiResponse <string> > DownloadFileToServer([FromBody] TestDownload testDownload)
        {
            var response = await _requestClient.DownloadFileAsync(testDownload.Url, testDownload.FileName);

            return(response);
        }