mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
Fix convention tests running for gists
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
using System;
|
||||
using Octokit.Internal;
|
||||
using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class GistRequest : RequestParameters
|
||||
{
|
||||
public GistRequest(DateTimeOffset since)
|
||||
@@ -11,5 +13,13 @@ namespace Octokit
|
||||
}
|
||||
|
||||
public DateTimeOffset Since { get; set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
get
|
||||
{
|
||||
return String.Format(CultureInfo.InvariantCulture, "Since: {0}", Since);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user