mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
Add doc comments for Author and Committer
This commit is contained in:
@@ -24,12 +24,22 @@ namespace Octokit
|
||||
Files = files;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the GitHub account information for the commit author. It attempts to match the email
|
||||
/// address used in the commit with the email addresses registered with the GitHub account.
|
||||
/// If no account corresponds to the commit email, then this property is null.
|
||||
/// </summary>
|
||||
public Author Author { get; protected set; }
|
||||
|
||||
public string CommentsUrl { get; protected set; }
|
||||
|
||||
public Commit Commit { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the GitHub account information for the commit committer. It attempts to match the email
|
||||
/// address used in the commit with the email addresses registered with the GitHub account.
|
||||
/// If no account corresponds to the commit email, then this property is null.
|
||||
/// </summary>
|
||||
public Author Committer { get; protected set; }
|
||||
|
||||
public string HtmlUrl { get; protected set; }
|
||||
|
||||
Reference in New Issue
Block a user