mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-23 14:57:39 +00:00
97e9ee566e
per #1015. Top level client obsoleted.
11 lines
352 B
C#
11 lines
352 B
C#
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableActivitiesClient
|
|
{
|
|
IObservableEventsClient Events { get; }
|
|
IObservableWatchedClient Watching { get; }
|
|
IObservableStarredClient Starring { get; }
|
|
IObservableFeedsClient Feeds { get; }
|
|
IObservableNotificationsClient Notifications { get; }
|
|
}
|
|
} |