using Octokit.Internal; namespace Octokit { public class PullRequestReviewCommentCreate : RequestParameters { /// /// The text of the comment. /// public string Body { get; set; } /// /// The SHA of the commit to comment on. /// [Parameter(Key = "commit_id")] public string CommitId { get; set; } /// /// The relative path of the file to comment on. /// public string Path { get; set; } /// /// The line index in the diff to comment on. /// public int Position { get; set; } } }