Files
octokit.net/Octokit/Clients/IActivitiesClient.cs
Mordechai Zuber 97e9ee566e Move INotificationsClient to under IActivitiesClient
per #1015.

Top level client obsoleted.
2015-12-20 14:05:20 +02:00

36 lines
950 B
C#

namespace Octokit
{
/// <summary>
/// A client for GitHub's Activity API.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/activity/">Activity API documentation</a> for more information.
/// </remarks>
public interface IActivitiesClient
{
/// <summary>
/// Client for the Events API
/// </summary>
IEventsClient Events { get; }
/// <summary>
/// Client for the Starring API
/// </summary>
IStarredClient Starring { get; }
/// <summary>
/// Client for the Watching API
/// </summary>
IWatchedClient Watching { get; }
/// <summary>
/// Client for the Feeds API
/// </summary>
IFeedsClient Feeds { get; }
/// <summary>
/// Client for the Notifications API
/// </summary>
INotificationsClient Notifications { get; }
}
}