mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 20:30:41 +00:00
Fixed failing HasDebuggerDisplayAttribute tests
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class GistFileUpdate
|
||||
{
|
||||
public string NewFileName { get; set; }
|
||||
|
||||
public string Content { get; set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
get { return String.Format(CultureInfo.InvariantCulture, "NewFileName: {0}", NewFileName); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user