mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
IApiResponse no longer inherits IResponse
This commit is contained in:
@@ -4,9 +4,15 @@ using System.Net;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
public interface IApiResponse<T> : IResponse
|
||||
public interface IApiResponse<out T>
|
||||
{
|
||||
new T BodyAsObject { get; set; }
|
||||
T Body { get; }
|
||||
|
||||
ApiInfo ApiInfo { get; }
|
||||
|
||||
HttpStatusCode StatusCode { get; }
|
||||
|
||||
IResponse HttpResponse { get; }
|
||||
}
|
||||
|
||||
public interface IResponse
|
||||
|
||||
Reference in New Issue
Block a user