namespace Octokit.Reactive { /// /// A client for GitHub's Enterprise API. /// /// /// See the Enterprise API documentation for more information. /// public interface IObservableEnterpriseClient { /// /// A client for GitHub's Enterprise Admin Stats API /// /// /// See the Enterprise Admin Stats API documentation for more information. /// IObservableEnterpriseAdminStatsClient AdminStats { get; } /// /// A client for GitHub's Enterprise License API /// /// /// See the Enterprise License API documentation for more information. /// IObservableEnterpriseLicenseClient License { get; } /// /// A client for GitHub's Enterprise Organization API /// /// /// See the Enterprise Organization API documentation for more information. /// IObservableEnterpriseOrganizationClient Organization { get; } } }