mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
Making the since parameter required
Adding 💄 `Task.FromResult` to tests
This commit is contained in:
@@ -11,8 +11,11 @@ namespace Octokit
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class PublicRepositoryRequest : RequestParameters
|
||||
{
|
||||
public PublicRepositoryRequest()
|
||||
public PublicRepositoryRequest(int since)
|
||||
{
|
||||
Ensure.ArgumentNotNull(since, "since");
|
||||
|
||||
Since = since;
|
||||
}
|
||||
|
||||
public long Since { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user