mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 03:16:11 +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
@@ -0,0 +1,20 @@
|
||||
using Octokit.Internal;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
public class PullRequestRequest : RequestParameters
|
||||
{
|
||||
public PullRequestRequest()
|
||||
{
|
||||
State = ItemState.Open;
|
||||
}
|
||||
|
||||
public ItemState State { get; set; }
|
||||
|
||||
[Parameter(Key = "head")]
|
||||
public string Head { get; set; }
|
||||
|
||||
[Parameter(Key = "base")]
|
||||
public string Base { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user