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

Commit fb09c60

Browse files
Adding doc comments
1 parent 1b4d2c8 commit fb09c60

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/GitHub.App/ViewModels/Documents/CommitListViewModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public CommitListViewModel(IEnumerable<ICommitSummaryViewModel> commits)
5050
/// <inheritdoc/>
5151
public ICommitActorViewModel Author { get; }
5252

53+
/// <inheritdoc/>
5354
public string AuthorName { get; }
5455

5556
/// <inheritdoc/>

src/GitHub.Exports.Reactive/ViewModels/Documents/ICommitListViewModel.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ public interface ICommitListViewModel : IViewModel
1313
/// </summary>
1414
ICommitActorViewModel Author { get; }
1515

16+
/// <summary>
17+
/// Gets a string to display the author login or the author name.
18+
/// </summary>
19+
string AuthorName { get; }
20+
1621
/// <summary>
1722
/// Gets a string to display next to the author in the view.
1823
/// </summary>
@@ -22,7 +27,5 @@ public interface ICommitListViewModel : IViewModel
2227
/// Gets the commits.
2328
/// </summary>
2429
IReadOnlyList<ICommitSummaryViewModel> Commits { get; }
25-
26-
string AuthorName { get; }
2730
}
2831
}

0 commit comments

Comments
 (0)