using System;
namespace Octokit.Reactive
{
public interface IObservableRepositoryContentsClient
{
///
/// Returns the HTML rendered README.
///
/// The owner of the repository
/// The name of the repository
///
IObservable GetReadme(string owner, string name);
///
/// Returns just the HTML portion of the README without the surrounding HTML document.
///
/// The owner of the repository
/// The name of the repository
///
IObservable GetReadmeHtml(string owner, string name);
}
}