Implemented pull request merge functionality

This commit is contained in:
Josh Sullivan
2013-11-12 00:17:51 -05:00
committed by Brendan Forster
parent a2d303684f
commit fddae25b6f
10 changed files with 109 additions and 0 deletions
@@ -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; }
}
}