diff --git a/Octokit/GitHubModels.cs b/Octokit/GitHubModels.cs index bb89c0ef..b27cabb3 100644 --- a/Octokit/GitHubModels.cs +++ b/Octokit/GitHubModels.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Text; -using System.Text.RegularExpressions; using System.Threading.Tasks; using Octokit.Http; @@ -266,6 +265,11 @@ namespace Octokit /// The api URL for this user. /// public string Url { get; set; } + + /// + /// Whether or not the user is an administrator of the site + /// + public bool SiteAdmin { get; set; } } public class Organization