using System.Net; namespace DigitalData.Core.Abstractions.Client { public interface IBaseHttpClientService { public string Uri { get; init; } public CookieCollection GetCookies(string route = ""); Task FetchAsync( string route = "", HttpMethod? method = null, HttpContent? body = null, Dictionary? form = null, bool sendWithCookie = true, bool saveCookie = true ); } }