using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace Client.SSE { public interface IWebRequester { Task Get(Uri url, Dictionary headers = null); } }