using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
///
/// Used to fork a repository.
///
///
/// API: https://developer.github.com/v3/repos/forks/#create-a-fork
///
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class NewRepositoryFork
{
///
/// Gets or sets the organization name to fork into (Optional). If not specified, creates a fork for the
/// authenticated user.
///
///
/// The organization.
///
public string Organization { get; set; }
internal string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture,
"Repository Hook: Organization: {0}", Organization);
}
}
}
}