mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-22 22:46:08 +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).
17 lines
449 B
C#
17 lines
449 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class SearchCodeResult : SearchResult<SearchCode>
|
|
{
|
|
public SearchCodeResult() { }
|
|
|
|
public SearchCodeResult(int totalCount, bool incompleteResults, IReadOnlyList<SearchCode> items)
|
|
: base(totalCount, incompleteResults, items)
|
|
{
|
|
}
|
|
}
|
|
} |