mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
Following the API sidebar structure, the migrations client is pulled out and put into another Migration client.
19 lines
619 B
C#
19 lines
619 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Migration API. These APIs help you move projects to or from GitHub.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Docs: https://developer.github.com/v3/migration/
|
|
/// </remarks>
|
|
public interface IMigrationClient
|
|
{
|
|
/// <summary>
|
|
/// The Enterprise Migrations API lets you move a repository from GitHub to GitHub Enterprise.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/migration/#enterprise-migrations
|
|
/// </remarks>
|
|
IMigrationsClient Migrations { get; }
|
|
}
|
|
} |