IApiResponse no longer inherits IResponse

This commit is contained in:
Haacked
2015-01-01 20:37:52 -08:00
parent 09d5c236a4
commit 4c8bab20eb
42 changed files with 383 additions and 397 deletions
+8 -2
View File
@@ -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