mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
[feat] Adds the slug field to the GitHubApp response object
This commit is contained in:
@@ -12,9 +12,10 @@ namespace Octokit
|
||||
{
|
||||
public GitHubApp() { }
|
||||
|
||||
public GitHubApp(long id, string name, User owner, string description, string externalUrl, string htmlUrl, DateTimeOffset createdAt, DateTimeOffset updatedAt)
|
||||
public GitHubApp(long id, string slug, string name, User owner, string description, string externalUrl, string htmlUrl, DateTimeOffset createdAt, DateTimeOffset updatedAt)
|
||||
{
|
||||
Id = id;
|
||||
Slug = slug;
|
||||
Name = name;
|
||||
Owner = owner;
|
||||
Description = description;
|
||||
@@ -29,6 +30,11 @@ namespace Octokit
|
||||
/// </summary>
|
||||
public long Id { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The url-friendly version of the repository name.
|
||||
/// </summary>
|
||||
public string Slug { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The Name of the GitHub App.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user