Added Reference Model

This commit is contained in:
Kristian Hellang
2013-11-22 01:18:55 +01:00
parent d464b6ddaf
commit 0971e3297d
8 changed files with 39 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Octokit
{
public class Reference
{
public string Ref { get; set; }
public string Url { get; set; }
public TagObject Object { get; set; }
}
}