mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 11:24:44 +00:00
Implemented pull request merge functionality
This commit is contained in:
committed by
Brendan Forster
parent
a2d303684f
commit
fddae25b6f
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
public class PullRequestMerge
|
||||
{
|
||||
/// <summary>
|
||||
/// The sha reference of the commit.
|
||||
/// </summary>
|
||||
public string sha { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// True if merged successfully, otherwise false.
|
||||
/// </summary>
|
||||
public bool Merged { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The message that will be used for the merge commit.
|
||||
/// </summary>
|
||||
public string Message { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user