mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-28 00:52:08 +00:00
4e804f61a6
* updated XML docs and added some missing bits. * prefer nameof(x) over literal "x"
20 lines
631 B
C#
20 lines
631 B
C#
namespace Octokit.Reactive
|
|
{
|
|
public class ObservableMigrationClient : IObservableMigrationClient
|
|
{
|
|
public ObservableMigrationClient(IGitHubClient client)
|
|
{
|
|
Ensure.ArgumentNotNull(client, nameof(client));
|
|
|
|
Migrations = new ObservableMigrationsClient(client);
|
|
}
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Migrations API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/migration/#enterprise-migrations
|
|
/// </remarks>
|
|
public IObservableMigrationsClient Migrations { get; private set; }
|
|
}
|
|
} |