using System;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
///
/// Specifies the values used to update a .
/// Note: this is a PREVIEW api: https://developer.github.com/changes/2015-11-11-protected-branches-api/
///
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class BranchUpdate
{
///
/// The details
///
public BranchProtection Protection { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Protection: {0}", Protection.DebuggerDisplay);
}
}
}
}