mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-22 14:33:12 +00:00
c3a67ae777
Resolves https://github.com/octokit/octokit.net/issues/677. Removes obscolete properties (gravatar). Makes Models.Response properties all be protected (most were already).
18 lines
468 B
C#
18 lines
468 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class SearchRepositoryResult : SearchResult<Repository>
|
|
{
|
|
public SearchRepositoryResult() { }
|
|
|
|
public SearchRepositoryResult(int totalCount, bool incompleteResults, IReadOnlyList<Repository> items)
|
|
: base(totalCount, incompleteResults, items)
|
|
{
|
|
}
|
|
}
|
|
}
|