Getting there!

This commit is contained in:
Amy Palamountain
2014-02-19 22:11:20 +13:00
parent cd5627c824
commit ea97d09cd1
8 changed files with 87 additions and 9 deletions
+11 -3
View File
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class ReleaseAssetUpdate
{
public ReleaseAssetUpdate(string name)
@@ -25,5 +25,13 @@ namespace Octokit
/// Used in place of the filename.
/// </summary>
public string Label { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Name {0} Label: {1}", Name, Label);
}
}
}
}