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:
Haacked
2015-09-28 00:32:04 -07:00
parent 1cea52eefa
commit b2d6e15d48
18 changed files with 93 additions and 105 deletions

View File

@@ -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>