using System; using System.Collections.Generic; using System.Text; namespace Octokit.Reactive { /// /// A client for GitHub's Repository Actions API. /// /// /// See the Repository Actions API documentation for more details. /// public interface IObservableRepositoryActionsClient { /// /// Client for GitHub's Repository Actions API /// /// /// See the Deployments API documentation for more details /// IObservableRepositorySecretsClient Secrets { get; } /// /// Client for GitHub's Repository Actions API /// /// /// See the Deployments API documentation for more details /// IObservableRepositoryVariablesClient Variables { get; } } }