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