mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
Stubbed out the API for pull requests.
Still missing pull request files, commit lists and merge checks.
This commit is contained in:
committed by
Brendan Forster
parent
0df17bdaaa
commit
e3bf6ed0c9
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user