using System;
namespace Octokit.Reactive
{
public interface IObservableCommitCommentReactionsClient
{
///
/// Creates a reaction for an specified Commit Comment
///
/// http://developer.github.com/v3/repos/comments/#create-reaction-for-a-commit-comment
/// The owner of the repository
/// The name of the repository
/// The comment 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-a-commit-comment
/// The owner of the repository
/// The name of the repository
/// The comment id
///
IObservable GetAll(string owner, string name, int number);
}
}