mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +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:
@@ -10,6 +10,14 @@ namespace Octokit
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class Application
|
||||
{
|
||||
public Application() { }
|
||||
|
||||
public Application(string name, string url)
|
||||
{
|
||||
Name = name;
|
||||
Url = url;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <see cref="Application"/> Name.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user