示例#1
0
        public async Task <bool> Update(AttachmentDTO attachment)
        {
            var response = await _client.PutAsync($"api/v1/attachments", attachment.ToHttpContent());

            return(response.IsSuccessStatusCode);
        }