Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Whitestripe7773 committed Jan 12, 2022
1 parent b4d7fb0 commit c03bb96
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Octokit/Models/Response/GitHubApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ public class GitHubApp
{
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;
Expand All @@ -29,6 +30,11 @@ public GitHubApp(long id, string name, User owner, string description, string ex
/// </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>
Expand Down

0 comments on commit c03bb96

Please sign in to comment.