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