mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 05:35:11 +00:00
Implemented pull request review comments API
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user