/Atlassian.Jira/IWebClient.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0 · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · 6bb08cd28f00138e005c448f4ace6b3c MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira
  6. {
  7. public interface IWebClient
  8. {
  9. void AddQueryString(string key, string value);
  10. void Download(string url, string fileName);
  11. }
  12. }