Files
octokit.net/Octokit/Models/Request/PublicRepositoryRequest.cs
2015-12-16 21:23:36 +02:00

41 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 integer ID of the last Repository that youve seen.</param>
public PublicRepositoryRequest(int since)
{
Ensure.ArgumentNotNull(since, "since");
Since = since;
}
/// <summary>
/// Gets or sets the integer ID of the last Repository that youve seen.
/// </summary>
/// <value>
/// The since.
/// </value>
public long Since { get; set; }
internal string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture, "Since: {0} ", Since);
}
}
}
}