namespace PostmanCloneLibrary { public interface IApiAccess { Task CallApiAsync(string url, string content, HttpAction action = HttpAction.GET, bool formaOutput = true); Task CallApiAsync(string url, HttpContent? content = null, HttpAction action = HttpAction.GET, bool formaOutput = true); bool IsValidUrl(string url); } }