remove IMessageSerializer from basic request methods
This commit is contained in:
@@ -12,13 +12,13 @@ public interface IApiClient
|
||||
|
||||
ILogger Log { get; set; }
|
||||
|
||||
Task<ApiResponse> SendRequest(string route, IMessageSerializer? serializer = null);
|
||||
Task<ApiResponse> SendRequest(string route);
|
||||
|
||||
Task<ApiResponse> SendRequest(string route, ApiMessage? message);
|
||||
|
||||
Task<ApiResponse> SendRequest(string route, ApiMessage? message, IMessageSerializer? serializer);
|
||||
|
||||
Task<ApiResponse<TResponse>> SendRequest<TResponse>(string route, IMessageSerializer? serializer = null) where TResponse : ApiMessage;
|
||||
Task<ApiResponse<TResponse>> SendRequest<TResponse>(string route) where TResponse : ApiMessage;
|
||||
|
||||
Task<ApiResponse<TResponse>> SendRequest<TResponse>(string route, ApiMessage? message) where TResponse : ApiMessage;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user