mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-27 08:32:04 +00:00
fc3e9c2cd2
* 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
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 SearchLabelsResult : SearchResult<Label>
|
|
{
|
|
public SearchLabelsResult() { }
|
|
|
|
public SearchLabelsResult(int totalCount, bool incompleteResults, IReadOnlyList<Label> items)
|
|
: base(totalCount, incompleteResults, items)
|
|
{
|
|
}
|
|
}
|
|
} |