Files
canvasManagement/Management/Services/IWebRequestor.cs
2023-01-04 20:26:15 -07:00

8 lines
175 B
C#

using RestSharp;
public interface IWebRequestor
{
Task<RestResponse<T[]>> GetManyAsync<T>(RestRequest request);
Task<RestResponse<T>> GetAsync<T>(RestRequest request);
}