mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 13:45:12 +00:00
19 lines
428 B
C#
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; }
|
|
}
|
|
}
|