mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-22 23:25:24 +00:00
* remove obsolete "Branches" methods from RepositoryClient (all were previuosly moved to RepositoryBranchesClient) * Remove obsolete DeploymentStatus fields * Remove obsoleteMergePullRequest.Squash parameter * Remove obsolete request ctor * Remove tests * Not sure how I missed these test references
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System;
|
||
using System.Diagnostics;
|
||
using System.Globalization;
|
||
|
||
namespace Octokit
|
||
{
|
||
/// <summary>
|
||
/// Used as part of the request to retrieve all public repositories.
|
||
/// </summary>
|
||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||
public class PublicRepositoryRequest : RequestParameters
|
||
{
|
||
/// <summary>
|
||
/// Initializes a new instance of the <see cref="PublicRepositoryRequest"/> class.
|
||
/// </summary>
|
||
/// <param name="since">The Id of the last Repository that you’ve seen.</param>
|
||
public PublicRepositoryRequest(long since)
|
||
{
|
||
Since = since;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets or sets the integer Id of the last Repository that you’ve seen.
|
||
/// </summary>
|
||
/// <value>
|
||
/// The since.
|
||
/// </value>
|
||
public long Since { get; set; }
|
||
|
||
internal string DebuggerDisplay
|
||
{
|
||
get
|
||
{
|
||
return string.Format(CultureInfo.InvariantCulture, "Since: {0} ", Since);
|
||
}
|
||
}
|
||
}
|
||
}
|