added missing properties to IObservableIssuesClient

This commit is contained in:
Brendan Forster
2014-02-07 10:50:09 +11:00
parent b310da1eb8
commit 6bdceee7b4
6 changed files with 48 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ namespace Octokit.Reactive
{
public interface IObservableIssuesClient
{
/// <summary>
/// Client for managing assignees.
/// </summary>
IObservableAssigneesClient Assignee { get; }
/// <summary>
@@ -12,6 +15,23 @@ namespace Octokit.Reactive
/// </summary>
IObservableMilestonesClient Milestone { get; }
/// <summary>
/// Client for reading various event information associated with issues/pull requests.
/// This is useful both for display on issue/pull request information pages and also to
/// determine who should be notified of comments.
/// </summary>
IObservableIssuesEventsClient Events { get; }
/// <summary>
/// Client for managing labels.
/// </summary>
IObservableIssuesLabelsClient Labels { get; }
/// <summary>
/// Client for managing comments.
/// </summary>
IObservableIssueCommentsClient Comment { get; }
/// <summary>
/// Gets a single Issue by number.
/// </summary>