using System.Diagnostics; using System.Globalization; namespace Octokit { /// /// Used as part of the request to retrieve all organizations. /// [DebuggerDisplay("{DebuggerDisplay,nq}")] public class OrganizationRequest : RequestParameters { /// /// Initializes a new instance of the class. /// /// The integer Id of the last Organization that you've seen. public OrganizationRequest(int since) { Ensure.ArgumentNotNull(since, nameof(since)); Since = since; } /// /// Gets or sets the integer Id of the last Organization that you've seen. /// public long Since { get; set; } internal string DebuggerDisplay { get { return string.Format(CultureInfo.InvariantCulture, "Since: {0} ", Since); } } } }