mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 19:46:07 +00:00
Creates constructors for all Models.Response.
Resolves https://github.com/octokit/octokit.net/issues/677. Removes obscolete properties (gravatar). Makes Models.Response properties all be protected (most were already).
This commit is contained in:
@@ -22,6 +22,14 @@ namespace Octokit
|
||||
Title = title;
|
||||
}
|
||||
|
||||
protected SshKey(int id, string key, string title, string url)
|
||||
{
|
||||
Id = id;
|
||||
Key = key;
|
||||
Title = title;
|
||||
Url = url;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The system-wide unique Id for this user.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user