using System; using System.Diagnostics.CodeAnalysis; namespace Octokit.Reactive { public interface IObservableNotificationsClient { /// /// Retrieves all of the s for the current user. /// /// Thrown if the client is not authenticated. /// A of . [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetAllForCurrent(); /// /// Retrieves all of the s for the current user specific to the specified repository. /// /// Thrown if the client is not authenticated. /// A of . IObservable GetAllForRepository(string owner, string name); } }