mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
97e9ee566e
per #1015. Top level client obsoleted.
36 lines
950 B
C#
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; }
|
|
}
|
|
} |