mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-31 18:13:21 +00:00
Fleshed out most of the API methods
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user