using System; namespace Octokit.Reactive { /// /// A client for GitHub's Feeds API. /// /// /// See the Feeds API documentation for more information /// public interface IObservableFeedsClient { /// /// Gets all the feeds available to the authenticating user /// /// /// http://developer.github.com/v3/activity/feeds/#list-feeds /// /// All the public s for the particular user. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetFeeds(); } }