Files
octokit.net/Octokit/Models/Request/PullRequestReviewCommentReplyCreate.cs
2013-11-17 08:34:23 +11:00

19 lines
428 B
C#

using Octokit.Internal;
namespace Octokit
{
public class PullRequestReviewCommentReplyCreate : RequestParameters
{
/// <summary>
/// The text of the comment.
/// </summary>
public string Body { get; set; }
/// <summary>
/// The comment Id to reply to.
/// </summary>
[Parameter(Key = "in_reply_to")]
public int InReplyTo { get; set; }
}
}