using System;
namespace Octokit.Reactive
{
public interface IObservableIssueReactionsClient
{
///
/// Creates a reaction for an specified Commit Comment
///
/// http://developer.github.com/v3/repos/comments/#create-reaction-for-an-issue
/// The owner of the repository
/// The name of the repository
/// The issue id
/// The reaction to create
///
IObservable CreateReaction(string owner, string name, int number, NewReaction reaction);
///
/// List reactions for a specified Commit Comment
///
/// http://developer.github.com/v3/repos/comments/#list-reactions-for-an-issue
/// The owner of the repository
/// The name of the repository
/// The issue id
///
IObservable GetAll(string owner, string name, int number);
}
}