mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
🔥 Repository.SubscribersCount
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Octokit
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Repository(string url, string htmlUrl, string cloneUrl, string gitUrl, string sshUrl, string svnUrl, string mirrorUrl, int id, User owner, string name, string fullName, string description, string homepage, string language, bool @private, bool fork, int forksCount, int stargazersCount, int subscribersCount, string defaultBranch, int openIssuesCount, DateTimeOffset? pushedAt, DateTimeOffset createdAt, DateTimeOffset updatedAt, RepositoryPermissions permissions, User organization, Repository parent, Repository source, bool hasIssues, bool hasWiki, bool hasDownloads)
|
||||
public Repository(string url, string htmlUrl, string cloneUrl, string gitUrl, string sshUrl, string svnUrl, string mirrorUrl, int id, User owner, string name, string fullName, string description, string homepage, string language, bool @private, bool fork, int forksCount, int stargazersCount, string defaultBranch, int openIssuesCount, DateTimeOffset? pushedAt, DateTimeOffset createdAt, DateTimeOffset updatedAt, RepositoryPermissions permissions, User organization, Repository parent, Repository source, bool hasIssues, bool hasWiki, bool hasDownloads)
|
||||
{
|
||||
Url = url;
|
||||
HtmlUrl = htmlUrl;
|
||||
@@ -34,9 +34,6 @@ namespace Octokit
|
||||
Fork = fork;
|
||||
ForksCount = forksCount;
|
||||
StargazersCount = stargazersCount;
|
||||
#pragma warning disable 612,618
|
||||
SubscribersCount = subscribersCount;
|
||||
#pragma warning restore 612,618
|
||||
DefaultBranch = defaultBranch;
|
||||
OpenIssuesCount = openIssuesCount;
|
||||
PushedAt = pushedAt;
|
||||
@@ -89,9 +86,6 @@ namespace Octokit
|
||||
|
||||
public int StargazersCount { get; protected set; }
|
||||
|
||||
[Obsolete("This property has been obsoleted. Please use WatchedClient.GetAllWatchers instead.")]
|
||||
public int SubscribersCount { get; protected set; }
|
||||
|
||||
public string DefaultBranch { get; protected set; }
|
||||
|
||||
public int OpenIssuesCount { get; protected set; }
|
||||
|
||||
Reference in New Issue
Block a user