mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 13:45:12 +00:00
Replace SignatureResponse and CommitEntity with Committer
A recent PR added CommitEntity but we already had SignatureResponse expressly for this purpose. So this commit renames SignatureResponse to Committer and removes CommitEntity and replaces it with Committer.
This commit is contained in:
@@ -34,12 +34,12 @@ namespace Octokit
|
||||
/// <summary>
|
||||
/// Specifies the committer to use for the commit. This is optional.
|
||||
/// </summary>
|
||||
public SignatureResponse Committer { get; set; }
|
||||
public Committer Committer { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Specifies the author to use for the commit. This is optional.
|
||||
/// </summary>
|
||||
public SignatureResponse Author { get; set; }
|
||||
public Committer Author { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user