mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 15:45:28 +00:00
28 lines
611 B
C#
28 lines
611 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class PublicRepositoryRequest : RequestParameters
|
|
{
|
|
public PublicRepositoryRequest(int since)
|
|
{
|
|
Ensure.ArgumentNotNull(since, "since");
|
|
|
|
Since = since;
|
|
}
|
|
|
|
public long Since { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
return String.Format(CultureInfo.InvariantCulture, "Since: {0} ", Since);
|
|
}
|
|
}
|
|
}
|
|
}
|