Use GitReference across multiple types

This commit is contained in:
John Nye
2013-11-07 18:29:22 +00:00
parent 8b904ca0b1
commit 449cd1e4e2
8 changed files with 16 additions and 18 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Octokit
{
public class GitReference
{
public string Url { get; set; }
public string Sha { get; set; }
}
}