mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Move Starring into Activities
It's where it belongs.
This commit is contained in:
@@ -6,8 +6,10 @@
|
||||
: base(apiConnection)
|
||||
{
|
||||
Events = new EventsClient(apiConnection);
|
||||
Starring = new StarredClient(apiConnection);
|
||||
}
|
||||
|
||||
public IEventsClient Events { get; private set; }
|
||||
public IStarredClient Starring { get; private set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,5 +3,6 @@
|
||||
public interface IActivitiesClient
|
||||
{
|
||||
IEventsClient Events { get; }
|
||||
IStarredClient Starring { get; }
|
||||
}
|
||||
}
|
||||
@@ -89,7 +89,6 @@ namespace Octokit
|
||||
Release = new ReleasesClient(apiConnection);
|
||||
User = new UsersClient(apiConnection);
|
||||
SshKey = new SshKeysClient(apiConnection);
|
||||
Star = new StarredClient(apiConnection);
|
||||
GitDatabase = new GitDatabaseClient(apiConnection);
|
||||
}
|
||||
|
||||
@@ -135,7 +134,6 @@ namespace Octokit
|
||||
public IRepositoriesClient Repository { get; private set; }
|
||||
public IReleasesClient Release { get; private set; }
|
||||
public ISshKeysClient SshKey { get; private set; }
|
||||
public IStarredClient Star { get; private set; }
|
||||
public IUsersClient User { get; private set; }
|
||||
public INotificationsClient Notification { get; private set; }
|
||||
public IGitDatabaseClient GitDatabase { get; private set; }
|
||||
|
||||
@@ -14,7 +14,6 @@ namespace Octokit
|
||||
IRepositoriesClient Repository { get; }
|
||||
IReleasesClient Release { get; }
|
||||
ISshKeysClient SshKey { get; }
|
||||
IStarredClient Star { get; }
|
||||
IUsersClient User { get; }
|
||||
INotificationsClient Notification { get; }
|
||||
IGitDatabaseClient GitDatabase { get; }
|
||||
|
||||
Reference in New Issue
Block a user