diff --git a/Octokit/Models/Response/PullRequestReviewComment.cs b/Octokit/Models/Response/PullRequestReviewComment.cs index 734be9f2..14807e07 100644 --- a/Octokit/Models/Response/PullRequestReviewComment.cs +++ b/Octokit/Models/Response/PullRequestReviewComment.cs @@ -73,34 +73,6 @@ namespace Octokit /// The URL for the pull request via the API. /// public Uri PullRequestUrl { get; set; } - - /// - /// Contains Url, HtmlUrl and PullRequestUrl - /// - public PullRequestReviewCommentLinks Links { get; set; } - } - - public class PullRequestReviewCommentLinks - { - /// - /// URL of the comment via the API. - /// - public PullRequestReviewCommentLink Self { get; set; } - - /// - /// The URL for this comment on Github.com - /// - public PullRequestReviewCommentLink Html { get; set; } - - /// - /// The URL for the pull request via the API. - /// - public PullRequestReviewCommentLink PullRequest { get; set; } - } - - public class PullRequestReviewCommentLink - { - public Uri Href { get; set; } } public enum PullRequestReviewCommentSort