Stubbed out the API for pull requests.

Still missing pull request files, commit lists and merge checks.
This commit is contained in:
Josh Sullivan
2013-11-05 03:08:05 -05:00
committed by Brendan Forster
parent 0df17bdaaa
commit e3bf6ed0c9
14 changed files with 320 additions and 0 deletions
+10
View File
@@ -4,6 +4,16 @@ namespace Octokit
{
public class PullRequest
{
/// <summary>
/// The URL for this pull request.
/// </summary>
public Uri Url { get; set; }
/// <summary>
/// The pull request number.
/// </summary>
public int Number { get; set; }
public Uri HtmlUrl { get; set; }
public Uri DiffUrl { get; set; }
public Uri PatchUrl { get; set; }