missing files

This commit is contained in:
Andy Cross
2014-01-26 05:22:32 +00:00
parent 0c806d7298
commit e623632c3d
6 changed files with 237 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class NewRepositoryFork
{
public string Organization { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture,
"Repository Hook: Organization: {0}", Organization);
}
}
}
}