using System.Diagnostics; using System.Globalization; namespace Octokit { [DebuggerDisplay("{DebuggerDisplay,nq}")] public class BlobReference { public BlobReference() { } public BlobReference(string sha) { Sha = sha; } /// /// The SHA of the blob. /// public string Sha { get; protected set; } internal string DebuggerDisplay { get { return string.Format(CultureInfo.InvariantCulture, "Sha: {0}", Sha); } } } }