mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-29 09:22:25 +00:00
renamed to searchqualifieroperator
make it clearer what this class is, plus updated all relevant project files.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Used for date and int comparisions in searches
|
||||
/// </summary>
|
||||
public enum SearchQualifierOperator
|
||||
{
|
||||
GreaterThan, // >
|
||||
LessThan, // <
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "LessOr")]
|
||||
LessOrEqualTo, // <=
|
||||
GreaterOrEqualTo// >=
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user