using System.Diagnostics;
using Octokit.Internal;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class PullRequestReviewCommentReplyCreate : RequestParameters
{
///
/// Creates a comment that is replying to another comment.
///
/// The text of the comment
/// The comment Id to reply to
public PullRequestReviewCommentReplyCreate(string body, int inReplyTo)
{
Ensure.ArgumentNotNullOrEmptyString(body, "body");
Body = body;
InReplyTo = inReplyTo;
}
///
/// The text of the comment.
///
public string Body { get; private set; }
///
/// The comment Id to reply to.
///
public int InReplyTo { get; private set; }
}
}