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