Showdan.Net
c# client for the shodan api
OrderOption.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Threading.Tasks;
5 
6 namespace Shodan.Net
7 {
11  public enum OrderOption
12  {
13  asc,
14  desc
15  }
16 }
OrderOption
Represents an order of either ascending or descending
Definition: OrderOption.cs:11