mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 15:45:28 +00:00
Add 'since` parameter for public repositories
This commit is contained in:
28
Octokit/Models/Request/PublicRepositoryRequest.cs
Normal file
28
Octokit/Models/Request/PublicRepositoryRequest.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user