using System.Diagnostics; using System.Globalization; namespace Octokit { [DebuggerDisplay("{DebuggerDisplay,nq}")] public class NewReaction { /// /// Initializes a new instance of the class. /// /// The reaction type. public NewReaction(ReactionType content) { Content = content; } /// /// The reaction type (required) /// public ReactionType Content { get; private set; } internal string DebuggerDisplay { get { return string.Format(CultureInfo.InvariantCulture, "Content: {0}", Content); } } } }