mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
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
445 B
C#
17 lines
445 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class SearchIssuesResult : SearchResult<Issue>
|
|
{
|
|
public SearchIssuesResult() { }
|
|
|
|
public SearchIssuesResult(int totalCount, bool incompleteResults, IReadOnlyList<Issue> items)
|
|
: base(totalCount, incompleteResults, items)
|
|
{
|
|
}
|
|
}
|
|
} |