Fleshed out most of the API methods

This commit is contained in:
Kristian Hellang
2013-11-24 23:20:11 +01:00
parent 742ce856e8
commit b9b60ed77c
8 changed files with 110 additions and 19 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace Octokit
{
public class ReferenceUpdate
{
public ReferenceUpdate(string sha, bool force = false)
{
Sha = sha;
Force = force;
}
public string Sha { get; set; }
public bool Force { get; set; }
}
}