diff --git a/Octokit/Models/Response/Branch.cs b/Octokit/Models/Response/Branch.cs index 29507be8..fbed15fd 100644 --- a/Octokit/Models/Response/Branch.cs +++ b/Octokit/Models/Response/Branch.cs @@ -9,10 +9,11 @@ namespace Octokit { public Branch() { } - public Branch(string name, GitReference commit) + public Branch(string name, GitReference commit, BranchProtection protection) { Name = name; Commit = commit; + Protection = protection; } ///