Files
PostManCloneApp/PostmanCloneLibrary/IApiAccess.cs

9 lines
202 B
C#

namespace PostmanCloneLibrary
{
public interface IApiAccess
{
Task<string> CallApiAsync(string url, bool formaOutput, HttpAction action);
bool IsValidUrl(string url);
}
}