Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 726de83

Browse files
Merge branch 'features/check-suite-annotations' into features/check-suite-annotations-inline
# Conflicts: # src/GitHub.App/SampleData/PullRequestAnnotationsViewModelDesigner.cs # src/GitHub.App/ViewModels/GitHubPane/PullRequestAnnotationItemViewModel.cs # src/GitHub.InlineReviews/Services/PullRequestSessionService.cs # src/GitHub.VisualStudio/Views/GitHubPane/PullRequestAnnotationsView.xaml # src/GitHub.VisualStudio/Views/GitHubPane/PullRequestFilesView.xaml
2 parents c1c229f + 0db9892 commit 726de83

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/GitHub.Exports.Reactive/ViewModels/GitHubPane/IPullRequestFileNode.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,20 @@ public interface IPullRequestFileNode : IPullRequestChangeNode
3333
/// Gets the number of review comments on the file.
3434
/// </summary>
3535
int CommentCount { get; }
36+
37+
/// <summary>
38+
/// Gets or sets the number of annotation notices on the file.
39+
/// </summary>
40+
int AnnotationNoticeCount { get; }
41+
42+
/// <summary>
43+
/// Gets or sets the number of annotation errors on the file.
44+
/// </summary>
45+
int AnnotationWarningCount { get; }
46+
47+
/// <summary>
48+
/// Gets or sets the number of annotation failures on the file.
49+
/// </summary>
50+
int AnnotationFailureCount { get; }
3651
}
3752
}

0 commit comments

Comments
 (0)