mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
8 lines
175 B
C#
8 lines
175 B
C#
using RestSharp;
|
|
|
|
public interface IWebRequestor
|
|
{
|
|
Task<RestResponse<T[]>> GetManyAsync<T>(RestRequest request);
|
|
Task<RestResponse<T>> GetAsync<T>(RestRequest request);
|
|
}
|