Files
octokit.net/Octokit/Models/Response/SearchLabelsResult.cs
Jozef Izso fc3e9c2cd2 Implement improved labels API (#1802)
* Implement new attributes for labels

* Include correct API header in all Labels calls

* Add integration tests for Create and Update methods for labels

* Use improved labels API in observable client

* found even more endpoints that need the preview header!

* RemoveFromIssue actually returns the list of remaining labels rather than null.  This change should be source compatible but not binary compatible

* Implement new labels search method in SearchClient

* Implement reactive client SearchLabels

* Improve documentation for label search methods

* more comment tidy up
2018-05-17 21:48:45 +10:00

17 lines
445 B
C#

using System.Collections.Generic;
using System.Diagnostics;
using Octokit.Internal;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class SearchLabelsResult : SearchResult<Label>
{
public SearchLabelsResult() { }
public SearchLabelsResult(int totalCount, bool incompleteResults, IReadOnlyList<Label> items)
: base(totalCount, incompleteResults, items)
{
}
}
}