mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 19:26:51 +00:00
Fix convention tests running for gists
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Octokit.Internal;
|
||||
using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class GistUpdate
|
||||
{
|
||||
public GistUpdate()
|
||||
@@ -13,6 +15,14 @@ namespace Octokit
|
||||
|
||||
public string Description { get; set; }
|
||||
public IDictionary<string, GistFileUpdate> Files { get; private set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
get
|
||||
{
|
||||
return String.Format(CultureInfo.InvariantCulture, "Description: {0}", Description);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class GistFileUpdate
|
||||
|
||||
Reference in New Issue
Block a user