mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 05:35:11 +00:00
added missing properties to IObservableIssuesClient
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user