mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 23:55:13 +00:00
29 lines
612 B
C#
29 lines
612 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class PublicRepositoryRequest : RequestParameters
|
|
{
|
|
public PublicRepositoryRequest()
|
|
{
|
|
}
|
|
|
|
public long Since { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
return String.Format(CultureInfo.InvariantCulture, "Since: {0} ", Since);
|
|
}
|
|
}
|
|
}
|
|
}
|