mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
removed WatchedCount property from Repository, resolves #699
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 watchersCount, 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, 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)
|
||||
{
|
||||
Url = url;
|
||||
HtmlUrl = htmlUrl;
|
||||
@@ -34,7 +34,6 @@ namespace Octokit
|
||||
Fork = fork;
|
||||
ForksCount = forksCount;
|
||||
StargazersCount = stargazersCount;
|
||||
WatchersCount = watchersCount;
|
||||
SubscribersCount = subscribersCount;
|
||||
DefaultBranch = defaultBranch;
|
||||
OpenIssuesCount = openIssuesCount;
|
||||
@@ -86,8 +85,6 @@ namespace Octokit
|
||||
|
||||
public int StargazersCount { get; protected set; }
|
||||
|
||||
public int WatchersCount { get; protected set; }
|
||||
|
||||
public int SubscribersCount { get; protected set; }
|
||||
|
||||
public string DefaultBranch { get; protected set; }
|
||||
|
||||
Reference in New Issue
Block a user