using System;
using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive
{
public interface IObservableRepositoryForksClient
{
///
/// Gets the list of forks defined for a repository
///
/// See API documentation for more information.
///
IObservable GetAll(string owner, string repositoryName, RepositoryForksListRequest request);
///
/// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization.
///
/// See API documentation for more information.
///
IObservable Create(string owner, string repositoryName, NewRepositoryFork fork);
}
}