bugfix for PR commits having different shape to regular commits

This commit is contained in:
Brendan Forster
2014-02-18 20:20:37 +11:00
parent 768461312d
commit 1231b794b1
11 changed files with 33 additions and 11 deletions
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Octokit
{
public class PullRequestCommit
{
public Signature Author { get; set; }
public Uri CommentsUrl { get; set; }
public Commit Commit { get; set; }
public Signature Committer { get; set; }
public Uri HtmlUrl { get; set; }
public IEnumerable<GitReference> Parents { get; set; }
public string Sha { get; set; }
public Uri Url { get; set; }
}
}