Rename IResponse<T> to IApiResponse

This commit is contained in:
Haacked
2015-01-01 19:33:25 -08:00
parent 49f95d40f1
commit 09d5c236a4
24 changed files with 120 additions and 121 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ using System.Net;
namespace Octokit
{
public interface IResponse<T> : IResponse
public interface IApiResponse<T> : IResponse
{
new T BodyAsObject { get; set; }
}