mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
bugfix for PR commits having different shape to regular commits
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user