using System; using System.Collections.Generic; namespace Octokit.Reactive { public interface IObservableAssigneesClient { /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// /// The owner of the repository /// The name of the repository /// IObservable> GetForRepository(string owner, string name); /// /// Checks to see if a user is an assignee for a repository. /// /// The owner of the repository /// The name of the repository /// Username of the prospective assignee /// IObservable CheckAssignee(string owner, string name, string assignee); } }