namespace Octokit
{
///
/// A client for GitHub's Migration API. These APIs help you move projects to or from GitHub.
///
///
/// Docs: https://developer.github.com/v3/migration/
///
public interface IMigrationClient
{
///
/// The Enterprise Migrations API lets you move a repository from GitHub to GitHub Enterprise.
///
///
/// https://developer.github.com/v3/migration/#enterprise-migrations
///
IMigrationsClient Migrations { get; }
}
}